登录时增加shopName,logo;增加支付笔数;支付笔数饼图只判断完成的订单,

This commit is contained in:
liuyingfang
2024-03-14 09:44:22 +08:00
parent 8d9ba78594
commit f8f3212bdb
11 changed files with 110 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
package cn.ysk.cashier.vo;
import lombok.Data;
import java.math.BigDecimal;
/**
* @author lyf
*/
@Data
public class CountDateVO {
private String tradeDay;
private BigDecimal count;
public CountDateVO(String tradeDay, BigDecimal count) {
this.tradeDay = tradeDay;
this.count = count;
}
public CountDateVO() {
}
}

View File

@@ -30,5 +30,8 @@ public class SummaryVO {
*用户数
*/
private Long totalUser =0L;
/**
* 支付笔数柱形图
*/
private List<CountDateVO> countDateList;
}