数据报表
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
package cn.ysk.cashier.vo;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
public class TbOrderPayCountByDayVo {
|
||||
|
||||
private String tradeDay;
|
||||
private Object scanCode;
|
||||
private Object wxLite;
|
||||
private Object cash;
|
||||
private BigDecimal total;
|
||||
|
||||
public String getTradeDay() {
|
||||
return tradeDay;
|
||||
}
|
||||
|
||||
public void setTradeDay(String tradeDay) {
|
||||
this.tradeDay = tradeDay;
|
||||
}
|
||||
|
||||
public Object getScanCode() {
|
||||
return scanCode;
|
||||
}
|
||||
|
||||
public void setScanCode(Object scanCode) {
|
||||
this.scanCode = scanCode;
|
||||
}
|
||||
|
||||
public Object getWxLite() {
|
||||
return wxLite;
|
||||
}
|
||||
|
||||
public void setWxLite(Object wxLite) {
|
||||
this.wxLite = wxLite;
|
||||
}
|
||||
|
||||
public Object getCash() {
|
||||
return cash;
|
||||
}
|
||||
|
||||
public void setCash(Object cash) {
|
||||
this.cash = cash;
|
||||
}
|
||||
|
||||
public BigDecimal getTotal() {
|
||||
return total;
|
||||
}
|
||||
|
||||
public void setTotal(BigDecimal total) {
|
||||
this.total = total;
|
||||
}
|
||||
|
||||
public TbOrderPayCountByDayVo(String tradeDay, Object scanCode, Object wxLite, Object cash, BigDecimal total) {
|
||||
this.tradeDay = tradeDay;
|
||||
this.scanCode = scanCode;
|
||||
this.wxLite = wxLite;
|
||||
this.cash = cash;
|
||||
this.total = total;
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,10 @@
|
||||
package cn.ysk.cashier.vo;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.StringJoiner;
|
||||
|
||||
|
||||
public class TbOrderPayCountVo{
|
||||
private String icon;
|
||||
private String payType;
|
||||
private BigDecimal payAmount;
|
||||
private Object payAmount;
|
||||
|
||||
public String getIcon() {
|
||||
return icon;
|
||||
@@ -25,28 +22,16 @@ public class TbOrderPayCountVo{
|
||||
this.payType = payType;
|
||||
}
|
||||
|
||||
public BigDecimal getPayAmount() {
|
||||
public Object getPayAmount() {
|
||||
return payAmount;
|
||||
}
|
||||
|
||||
public void setPayAmount(BigDecimal payAmount) {
|
||||
public void setPayAmount(Object payAmount) {
|
||||
this.payAmount = payAmount;
|
||||
}
|
||||
|
||||
public TbOrderPayCountVo() {
|
||||
}
|
||||
|
||||
public TbOrderPayCountVo(String payType, BigDecimal payAmount) {
|
||||
public TbOrderPayCountVo(String payType, Object payAmount) {
|
||||
this.payType = payType;
|
||||
this.payAmount = payAmount;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new StringJoiner(", ", TbOrderPayCountVo.class.getSimpleName() + "[", "]")
|
||||
.add("icon='" + icon + "'")
|
||||
.add("payType='" + payType + "'")
|
||||
.add("payAmount=" + payAmount)
|
||||
.toString();
|
||||
this.payAmount=payAmount;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
package cn.ysk.cashier.vo;
|
||||
|
||||
|
||||
public class TbOrderSalesCountByDayVo {
|
||||
|
||||
private String productName;
|
||||
private String productSkuName;
|
||||
|
||||
private Long salesNum;
|
||||
private Long refNum;
|
||||
private Long num;
|
||||
|
||||
public String getProductName() {
|
||||
return productName;
|
||||
}
|
||||
|
||||
public void setProductName(String productName) {
|
||||
this.productName = productName;
|
||||
}
|
||||
|
||||
public String getProductSkuName() {
|
||||
return productSkuName;
|
||||
}
|
||||
|
||||
public void setProductSkuName(String productSkuName) {
|
||||
this.productSkuName = productSkuName;
|
||||
}
|
||||
|
||||
public Long getSalesNum() {
|
||||
return salesNum;
|
||||
}
|
||||
|
||||
public void setSalesNum(Long salesNum) {
|
||||
this.salesNum = salesNum;
|
||||
}
|
||||
|
||||
public Long getRefNum() {
|
||||
return refNum;
|
||||
}
|
||||
|
||||
public void setRefNum(Long refNum) {
|
||||
this.refNum = refNum;
|
||||
}
|
||||
|
||||
public Long getNum() {
|
||||
return num;
|
||||
}
|
||||
|
||||
public void setNum(Long num) {
|
||||
this.num = num;
|
||||
}
|
||||
|
||||
public TbOrderSalesCountByDayVo(String productName, String productSkuName, Long salesNum, Long refNum, Long num) {
|
||||
this.productName = productName;
|
||||
this.productSkuName = productSkuName;
|
||||
this.salesNum = salesNum;
|
||||
this.refNum = refNum;
|
||||
this.num = num;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user