统计字段

This commit is contained in:
2026-02-04 15:03:33 +08:00
parent ee78543ab8
commit bb7ca6d05b
2 changed files with 6 additions and 1 deletions

View File

@@ -67,9 +67,13 @@ public class FinanceStsDTO {
private BigDecimal alipay; private BigDecimal alipay;
/** /**
* 主扫收款 * 二维码收款
*/ */
private BigDecimal selfScan; private BigDecimal selfScan;
/**
* 扫码收款
*/
private BigDecimal barScan;
/** /**
* 现金收款 * 现金收款

View File

@@ -40,6 +40,7 @@ public class FinanceStsServiceImpl implements FinanceStsService {
.setWechat(statistic.getWechatPayAmount()) .setWechat(statistic.getWechatPayAmount())
.setAlipay(statistic.getAlipayPayAmount()) .setAlipay(statistic.getAlipayPayAmount())
.setSelfScan(statistic.getMainScanPayAmount()) .setSelfScan(statistic.getMainScanPayAmount())
.setBarScan(statistic.getBackScanPayAmount())
.setCash(statistic.getCashPayAmount()) .setCash(statistic.getCashPayAmount())
.setRecharge(statistic.getRechargeAmount()) .setRecharge(statistic.getRechargeAmount())
.setOwed(statistic.getCreditPayAmount()) .setOwed(statistic.getCreditPayAmount())