diff --git a/src/main/resources/cashMapper/CashRefundMapper.xml b/src/main/resources/cashMapper/CashRefundMapper.xml index c43b871..c7ed8d8 100644 --- a/src/main/resources/cashMapper/CashRefundMapper.xml +++ b/src/main/resources/cashMapper/CashRefundMapper.xml @@ -423,14 +423,14 @@ crc.market, crc.order_code, crc.payment_currency, - FORMAT(crc.payment_amount / 100.0, 2) as paymentAmount, + ROUND(crc.payment_amount / 100.0, 2) as paymentAmount, crc.received_currency, - FORMAT(crc.received_amount / 100.0, 2) as receivedAmount, + ROUND(crc.received_amount / 100.0, 2) as receivedAmount, - FORMAT(crc.handling_charge / 100.0, 2) as handlingCharge, - FORMAT(crc.permanent_gold / 100.0, 2) as permanentGold, - FORMAT(crc.free_gold / 100.0, 2) as freeGold, + ROUND(crc.handling_charge / 100.0, 2) as handlingCharge, + ROUND(crc.permanent_gold / 100.0, 2) as permanentGold, + ROUND(crc.free_gold / 100.0, 2) as freeGold, crc.pay_type, crc.pay_time,