<?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.AccountReconciliationMapper">
|
<select id="accountReconciliationListPage" resultType="com.ruoyi.account.pojo.AccountReconciliation">
|
select * from account_reconciliation
|
where 1=1
|
<if test="c.counterparty !='' and c.counterparty!=null">
|
and counterparty = #{c.counterparty}
|
</if>
|
<if test="c.status !='' and c.status!=null">
|
and status = #{c.status}
|
</if>
|
</select>
|
</mapper>
|