diff --git a/emis-biz/src/main/resources/mapper/EmisSettlePayRecordMapper.xml b/emis-biz/src/main/resources/mapper/EmisSettlePayRecordMapper.xml index 6af6b8520..c54722bfc 100644 --- a/emis-biz/src/main/resources/mapper/EmisSettlePayRecordMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisSettlePayRecordMapper.xml @@ -147,7 +147,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" @@ -372,11 +372,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - delete from emis_settle_pay_record where id = #{id} + update emis_settle_pay_record set del_flag='1' where id = #{id} - delete from emis_settle_pay_record where id in + update emis_settle_pay_record set del_flag='1' where id in #{id} diff --git a/emis-biz/src/main/resources/mapper/EmisSettlePayRelMapper.xml b/emis-biz/src/main/resources/mapper/EmisSettlePayRelMapper.xml index e82e4829f..651d1fabc 100644 --- a/emis-biz/src/main/resources/mapper/EmisSettlePayRelMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisSettlePayRelMapper.xml @@ -153,11 +153,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - delete from emis_settle_pay_rel where id = #{id} + update emis_settle_pay_rel set del_flag='1' where id = #{id} - delete from emis_settle_pay_rel where id in + update emis_settle_pay_rel set del_flag='1' where id in #{id}