diff --git a/src/main/java/com/example/demo/mapper/cash/CashCollectionMapper.java b/src/main/java/com/example/demo/mapper/cash/CashCollectionMapper.java index 880b37d..935d49d 100644 --- a/src/main/java/com/example/demo/mapper/cash/CashCollectionMapper.java +++ b/src/main/java/com/example/demo/mapper/cash/CashCollectionMapper.java @@ -49,4 +49,5 @@ public interface CashCollectionMapper { //查找未同步的订单 ListgetUnSync(@Param("size")int size); //同步g_order订单到cash_record表 + //int syncToCashRecord(CashRecord record); } diff --git a/src/main/resources/cashMapper/CashCollectionMapper.xml b/src/main/resources/cashMapper/CashCollectionMapper.xml index f98b7ce..0ae1270 100644 --- a/src/main/resources/cashMapper/CashCollectionMapper.xml +++ b/src/main/resources/cashMapper/CashCollectionMapper.xml @@ -61,9 +61,6 @@ received_time = #{cashRecord.receivedTime}, - - received_remark = #{cashRecord.receivedRemark}, - payment_currency = #{cashRecord.paymentCurrency}, @@ -81,7 +78,6 @@ AND received_currency IS NOT NULL AND received_currency != '' AND received_amount IS NOT NULL AND received_time IS NOT NULL - AND received_remark IS NOT NULL AND received_remark != '' AND payment_currency IS NOT NULL AND payment_currency != '' AND payment_amount IS NOT NULL AND bank_code IS NOT NULL AND bank_code != '' @@ -192,11 +188,13 @@ + \ No newline at end of file