<?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="com.ruoyi.account.mapper.AccountMapper">
|
<select id="accountListPage" resultType="com.ruoyi.account.pojo.Account">
|
select * from account
|
where 1=1
|
<if test="c.counterparty !='' and c.counterparty!=null">
|
and counterparty = #{c.counterparty}
|
</if>
|
<if test="c.typeText !='' and c.typeText!=null">
|
and type_text = #{c.typeText}
|
</if>
|
</select>
|
</mapper>
|