diff --git a/src/main/resources/cashMapper/CashRefundMapper.xml b/src/main/resources/cashMapper/CashRefundMapper.xml
index ce9a30f..68f5f6c 100644
--- a/src/main/resources/cashMapper/CashRefundMapper.xml
+++ b/src/main/resources/cashMapper/CashRefundMapper.xml
@@ -516,7 +516,7 @@
AND (
- (crc.received_market = #{item.areaId} AND crc.pay_type = #{item.payType})
+ (crc.received_market = #{item.areaId,jdbcType=INTEGER} AND crc.pay_type = #{item.payType,jdbcType=VARCHAR})
)
@@ -544,9 +544,9 @@
NULL as freeGold,
crc.pay_type,
crr.refund_time as pay_time,
- crc.status,
crc.received_time,
crc.voucher,
+ crc.status,
crr.refund_currency as refundCurrency,
ROUND(crr.refund_amount / 100.0, 2) as refundAmount,
crr.related_id as relatedId,
@@ -585,7 +585,7 @@
AND (
- (crc.received_market = #{item.areaId} AND crc.pay_type = #{item.payType})
+ (crc.received_market = #{item.areaId,jdbcType=INTEGER} AND crc.pay_type = #{item.payType,jdbcType=VARCHAR})
)