登录时增加shopName,logo;增加支付笔数;支付笔数饼图只判断完成的订单,
This commit is contained in:
@@ -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() {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -30,5 +30,8 @@ public class SummaryVO {
|
||||
*用户数
|
||||
*/
|
||||
private Long totalUser =0L;
|
||||
|
||||
/**
|
||||
* 支付笔数柱形图
|
||||
*/
|
||||
private List<CountDateVO> countDateList;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user