完善首页数据
This commit is contained in:
@@ -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() {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -31,7 +31,17 @@ public class SummaryVO {
|
||||
*/
|
||||
private Long totalUser =0L;
|
||||
/**
|
||||
* 支付笔数柱形图
|
||||
* 销售额柱形图
|
||||
*/
|
||||
private List<CountDateVO> countDateList;
|
||||
/**
|
||||
* 访问量
|
||||
*/
|
||||
private Long totalVisits;
|
||||
/**
|
||||
* 访问量柱状图
|
||||
*/
|
||||
public List<CountVisitsVO> visitsCountList;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user