...
|
...
|
@@ -51,6 +51,9 @@ |
|
|
<if test="params.eventName != null && params.eventName != ''" >
|
|
|
and eventname like CONCAT('%',#{params.eventName,jdbcType=VARCHAR},'%' )
|
|
|
</if>
|
|
|
<if test="params.sms!=null && params.sms != ''">
|
|
|
and sms like CONCAT('%',#{params.sms,jdbcType=VARCHAR},'%')
|
|
|
</if>
|
|
|
order by id
|
|
|
limit #{startIndex},#{pageSize}
|
|
|
</select>
|
...
|
...
|
@@ -75,6 +78,10 @@ |
|
|
<if test="params.eventName != null && params.eventName != ''" >
|
|
|
and eventname like CONCAT('%',#{params.eventName,jdbcType=VARCHAR},'%' )
|
|
|
</if>
|
|
|
<if test="params.sms!=null && params.sms != ''">
|
|
|
and sms like CONCAT('%',#{params.sms,jdbcType=VARCHAR},'%')
|
|
|
</if>
|
|
|
|
|
|
</select>
|
|
|
|
|
|
<delete id="deleteById" parameterType="java.lang.Integer">
|
...
|
...
|
|