@ -9,8 +9,6 @@ import java.io.Serializable;
public class IcMessageListFormDTO implements Serializable {
private static final long serialVersionUID = 2697079163476964749L;
//检索内容
private String content;
private Integer pageNo = 1;
private Integer pageSize = 20;
private Boolean isPage = true;
@ -12,9 +12,6 @@
del_flag = '0'
AND customer_id = #{customerId}
AND user_id = #{userId}
<if test="content != null and content.trim() != ''">
AND message_content like concat('%', #{content}, '%')
</if>
</select>
<update id="upByUserId" parameterType="com.epmet.dto.form.ReadIcMessageFormDTO">
@ -14,6 +14,10 @@ public class IcPartyActListFormDTO implements Serializable {
* 签到状态[已签到:signIn 未签到:unSignIn]
*/
private String signIn;
/**
* 标题内容 模糊检索
private String topic;
//参加活动党组织ID,groupId
private String joinOrgId;
@ -197,6 +197,9 @@
<if test="null != actType and actType != ''">
AND ipa.act_type = #{actType}
<if test="topic != null and topic.trim() != ''">
AND ipa.topic like concat('%', #{topic}, '%')
ORDER BY ipa.hold_time DESC