Administrator
8 days ago 15c200aa7e0ced518364a68769503472b542c9f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.mall.vo;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class AdminDataInfoVo {
 
    private Integer totalMember = 0;//总数
    private Integer totalDayMember = 0;//昨日新增
    private Integer totalWeekMember = 0;//七日内新增
    private Integer totalMonthMember = 0;//30天内新增
 
    private BigDecimal totalAmount = BigDecimal.ZERO;//总数
    private BigDecimal totalDayAmount = BigDecimal.ZERO;//新增
    private BigDecimal totalWeekAmount = BigDecimal.ZERO;//本周新增
    private BigDecimal totalMonthAmount = BigDecimal.ZERO;//本月新增
 
}