This commit is contained in:
linfso 2024-06-17 15:17:41 +08:00
parent 790a30b8e0
commit c677363714

View File

@ -49,22 +49,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<where>
a.del_flag='0'
<if test="id != null "> and a.id = #{id}</if>
<if test="rechargeSiteCode != null and rechargeSiteCode != ''"> and recharge_site_code = #{rechargeSiteCode}</if>
<if test="rechargeAmount != null "> and recharge_amount = #{rechargeAmount}</if>
<if test="rechargeType != null and rechargeType != ''"> and recharge_type = #{rechargeType}</if>
<if test="remittanceType != null and remittanceType != ''"> and remittance_type = #{remittanceType}</if>
<if test="filePath != null and filePath != ''"> and file_path like concat('%', #{filePath}, '%')</if>
<if test="remittanceBank != null and remittanceBank != ''"> and remittance_bank like concat('%', #{remittanceBank}, '%')</if>
<if test="remittanceAccountName != null and remittanceAccountName != ''"> and remittance_account_name like concat('%', #{remittanceAccountName}, '%')</if>
<if test="remittanceCardNo != null and remittanceCardNo != ''"> and remittance_card_no like concat('%', #{remittanceCardNo}, '%')</if>
<if test="remittanceDate != null "> and remittance_date = #{remittanceDate}</if>
<if test="auditSiteCode != null and auditSiteCode != ''"> and audit_site_code = #{auditSiteCode}</if>
<if test="auditManCode != null and auditManCode != ''"> and audit_man_code = #{auditManCode}</if>
<if test="auditDate != null "> and audit_date = #{auditDate}</if>
<if test="auditStatus != null and auditStatus != ''"> and audit_status = #{auditStatus}</if>
<if test="auditDesc != null and auditDesc != ''"> and audit_desc like concat('%', #{auditDesc}, '%')</if>
<if test="remark != null and remark != ''"> and remark like concat('%', #{remark}, '%')</if>
<if test="tenantId != null and tenantId != ''"> and tenant_id like concat('%', #{tenantId}, '%')</if>
<if test="rechargeSiteCode != null and rechargeSiteCode != ''"> and a.recharge_site_code = #{rechargeSiteCode}</if>
<if test="rechargeAmount != null "> and a.recharge_amount = #{rechargeAmount}</if>
<if test="rechargeType != null and rechargeType != ''"> and a.recharge_type = #{rechargeType}</if>
<if test="remittanceType != null and remittanceType != ''"> and a.remittance_type = #{remittanceType}</if>
<if test="filePath != null and filePath != ''"> and a.file_path like concat('%', #{filePath}, '%')</if>
<if test="remittanceBank != null and remittanceBank != ''"> and a.remittance_bank like concat('%', #{remittanceBank}, '%')</if>
<if test="remittanceAccountName != null and remittanceAccountName != ''"> and a.remittance_account_name like concat('%', #{remittanceAccountName}, '%')</if>
<if test="remittanceCardNo != null and remittanceCardNo != ''"> and a.remittance_card_no like concat('%', #{remittanceCardNo}, '%')</if>
<if test="remittanceDate != null "> and a.remittance_date = #{remittanceDate}</if>
<if test="auditSiteCode != null and auditSiteCode != ''"> and a.audit_site_code = #{auditSiteCode}</if>
<if test="auditManCode != null and auditManCode != ''"> and a.audit_man_code = #{auditManCode}</if>
<if test="auditDate != null "> and a.audit_date = #{auditDate}</if>
<if test="auditStatus != null and auditStatus != ''"> and a.audit_status = #{auditStatus}</if>
<if test="auditDesc != null and auditDesc != ''"> and a.audit_desc like concat('%', #{auditDesc}, '%')</if>
<if test="remark != null and remark != ''"> and a.remark like concat('%', #{remark}, '%')</if>
<if test="tenantId != null and tenantId != ''"> and a.tenant_id like concat('%', #{tenantId}, '%')</if>
<if test="delFlag != null and delFlag != ''"> and a.del_flag=#{delFlag}</if>
<if test="createBy != null and createBy != ''"> and a.create_by=#{createBy}</if>
<if test="createTime != null "> and a.create_time = #{createTime}</if>