Browse Source

fix card

release_toaliyun_real
lin 3 years ago
parent
commit
ee322f80ef
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      mallinkService/src/main/java/com/iformall/domain/vo/WxCardSpendMerchantVo.java

+ 9
- 1
mallinkService/src/main/java/com/iformall/domain/vo/WxCardSpendMerchantVo.java View File

@@ -13,11 +13,19 @@ public class WxCardSpendMerchantVo {
private Long merchantId;
@Excel(name = "商户名称", width = 20, orderNum = "2")
private String merchantName;
@Excel(name = "交易总金额(分)", width = 20, orderNum = "3")
private BigDecimal total;
@Excel(name = "交易总金额(元)", width = 20, orderNum = "3")
private String totalStr;
@Excel(name = "总手续费(分)", width = 20, orderNum = "4")
private BigDecimal fee;
@Excel(name = "总补贴(分)", width = 20, orderNum = "5")
private BigDecimal subsidy;
public void setTotalStr() {
if (null != total) {
this.totalStr = total.divide(new BigDecimal(100)).toString();
}
this.totalStr = "0";
}
}

Loading…
Cancel
Save