Commit de99bf69 by zhiwj

bug

parent 290daca8
......@@ -46,6 +46,8 @@ public class RecordQO extends PageQO {
private List<String> appCodeList;
private Integer smsType;
public String getStartTime() {
return startTime;
}
......@@ -125,4 +127,12 @@ public class RecordQO extends PageQO {
public void setAppCodeList(List<String> appCodeList) {
this.appCodeList = appCodeList;
}
public Integer getSmsType() {
return smsType;
}
public void setSmsType(Integer smsType) {
this.smsType = smsType;
}
}
......@@ -476,6 +476,9 @@
<if test="smsContent != null and smsContent != '' ">
and ( sms_content like concat('%', #{smsContent}, '%') or receive_phone like concat('%', #{smsContent}, '%') )
</if>
<if test="smsType != null ">
and sms_type = #{smsType}
</if>
</where>
order by create_time desc
</select>
......
......@@ -486,6 +486,9 @@
<if test="smsContent != null and smsContent != '' ">
and (sms_content like concat('%', #{smsContent}, '%') or receive_phone like concat('%', #{smsContent}, '%') )
</if>
<if test="smsType != null ">
and sms_type = #{smsType}
</if>
</where>
order by create_time desc
</select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment