完善首页数据

This commit is contained in:
liuyingfang
2024-03-15 13:47:01 +08:00
parent 268d211f5b
commit f783116bc8
10 changed files with 270 additions and 49 deletions

View File

@@ -0,0 +1,24 @@
package cn.ysk.cashier.vo;
import lombok.Data;
import java.math.BigDecimal;
import java.math.BigInteger;
/**
* @author 访问量vo
*/
@Data
public class CountVisitsVO {
private String tradeDay;
private BigInteger count;
public CountVisitsVO(String tradeDay, BigInteger count) {
this.tradeDay = tradeDay;
this.count = count;
}
public CountVisitsVO() {
}
}

View File

@@ -31,7 +31,17 @@ public class SummaryVO {
*/
private Long totalUser =0L;
/**
* 支付笔数柱形图
* 销售额柱形图
*/
private List<CountDateVO> countDateList;
/**
* 访问量
*/
private Long totalVisits;
/**
* 访问量柱状图
*/
public List<CountVisitsVO> visitsCountList;
}