|
@@ -112,9 +112,9 @@ public class UserPrizeRecoveryController extends BaseApiController {
|
|
|
exchangePrice = goods.getExchangePrice();
|
|
|
}
|
|
|
|
|
|
- int refundNum = BigDecimal.valueOf((long) exchangePrice * param.getNum()).multiply(discountRate).divide(BigDecimal.valueOf(100),0, RoundingMode.HALF_UP).intValue();
|
|
|
+ int returnNum = BigDecimal.valueOf((long) exchangePrice * param.getNum()).multiply(discountRate).divide(BigDecimal.valueOf(100),0, RoundingMode.HALF_UP).intValue();
|
|
|
|
|
|
- settleVO.setRefundCoin(refundNum);
|
|
|
+ settleVO.setReturnCoin(returnNum);
|
|
|
// 封装结算对象
|
|
|
settleVO.setExchangePrice(exchangePrice);
|
|
|
settleVO.setStorageId(userPrizeStorage.getStorageId());
|