储值卡支付

This commit is contained in:
2024-06-20 16:11:54 +08:00
parent f345ba9b7f
commit cccf927b53
3 changed files with 19 additions and 7 deletions

View File

@@ -1,15 +1,14 @@
package cn.ysk.cashier.vo;
import java.math.BigDecimal;
public class TbOrderPayCountByDayVo {
private String tradeDay;
private Object scanCode;
private Object deposit;
private Object wxLite;
private Object cash;
private BigDecimal total;
private Object total;
public String getTradeDay() {
return tradeDay;
@@ -19,6 +18,14 @@ public class TbOrderPayCountByDayVo {
this.tradeDay = tradeDay;
}
public Object getDeposit() {
return deposit;
}
public void setDeposit(Object deposit) {
this.deposit = deposit;
}
public Object getScanCode() {
return scanCode;
}
@@ -43,17 +50,18 @@ public class TbOrderPayCountByDayVo {
this.cash = cash;
}
public BigDecimal getTotal() {
public Object getTotal() {
return total;
}
public void setTotal(BigDecimal total) {
public void setTotal(Object total) {
this.total = total;
}
public TbOrderPayCountByDayVo(String tradeDay, Object scanCode, Object wxLite, Object cash, BigDecimal total) {
public TbOrderPayCountByDayVo(String tradeDay, Object scanCode,Object deposit, Object wxLite, Object cash, Object total) {
this.tradeDay = tradeDay;
this.scanCode = scanCode;
this.deposit = deposit;
this.wxLite = wxLite;
this.cash = cash;
this.total = total;