From 4dc37fbb0af0477f7387378c156691e1a28bb873 Mon Sep 17 00:00:00 2001 From: linfso Date: Thu, 20 Mar 2025 16:11:38 +0800 Subject: [PATCH] md --- .../resources/mapper/EmisSettleInvoiceChRecordMapper.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/emis-biz/src/main/resources/mapper/EmisSettleInvoiceChRecordMapper.xml b/emis-biz/src/main/resources/mapper/EmisSettleInvoiceChRecordMapper.xml index 0a0a6ef0f..02713993b 100644 --- a/emis-biz/src/main/resources/mapper/EmisSettleInvoiceChRecordMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisSettleInvoiceChRecordMapper.xml @@ -151,9 +151,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ) --> and EXISTS( - select 1 from emis_settle_bill x2,emis_settle_invoice_bill_rel x3 - where x2.del_flag = '0' and x3.del_flag = '0' - and a.apply_seq_no=x3.apply_seq_no and x2.settle_bill_no=x3.settle_bill_no + select 1 from emis_settle_invoice_bill_rel x3 + where x3.del_flag = '0' + and a.apply_seq_no=x3.apply_seq_no + AND FIND_IN_SET(x3.settle_bill_no, #{settleBillNo}) )