parent
4cb5afca1a
commit
b7386bc81b
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
||||
<mapper namespace="au.com.royalpay.payment.manage.mappers.system.MailUnsubMapper">
|
||||
<select id="queryPageable" resultType="com.alibaba.fastjson.JSONObject">
|
||||
select * from sys_mail_unsub
|
||||
<where>
|
||||
<if test="client_moniker!=null">
|
||||
client_moniker = #{client_moniker}
|
||||
</if>
|
||||
<if test="client_id != 0">
|
||||
client_id = #{client_id}
|
||||
</if>
|
||||
<if test="address != null">
|
||||
address = #{address}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
Loading…
Reference in new issue