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