| @@ -109,6 +109,10 @@ public class WxCUserBasicInfo implements Serializable { | |||||
| private String tagNames; | private String tagNames; | ||||
| @Transient | @Transient | ||||
| private long count; | private long count; | ||||
| @Transient | |||||
| private Date startTime; | |||||
| @Transient | |||||
| private Date endTime; | |||||
| public String getLevel() { | public String getLevel() { | ||||
| return level; | return level; | ||||
| @@ -225,7 +229,21 @@ public class WxCUserBasicInfo implements Serializable { | |||||
| name = _name; | name = _name; | ||||
| } | } | ||||
| public Date getStartTime() { | |||||
| return startTime; | |||||
| } | |||||
| public void setStartTime(Date startTime) { | |||||
| this.startTime = startTime; | |||||
| } | |||||
| public Date getEndTime() { | |||||
| return endTime; | |||||
| } | |||||
| public void setEndTime(Date endTime) { | |||||
| this.endTime = endTime; | |||||
| } | |||||
| public static enum Field | public static enum Field | ||||
| { | { | ||||
| @@ -78,6 +78,9 @@ | |||||
| <if test=" null != name "> | <if test=" null != name "> | ||||
| and `name` like concat('%', #{name},'%') | and `name` like concat('%', #{name},'%') | ||||
| </if> | </if> | ||||
| <if test=" null != startTime and null!=endTime"> | |||||
| and `create_date` between #{startTime} and #{endTime} | |||||
| </if> | |||||
| <if test=" null != ids "> | <if test=" null != ids "> | ||||
| and id in | and id in | ||||
| <foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")"> | <foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")"> | ||||