1
phpcjl
2024-12-20 d51a8cfa10c34d9c1e7d6b4726d31e75ecee5dc6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.ruoyi.order.vo;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class OrderStatisticsDetail {
    private String date;
    /**
     * 服务订单数量
     */
    private Integer serviceTotal;
 
    /**
     * 单品订单数量
     */
    private Integer singleTotal;
 
    /**
     * 订单总数量
     */
    private Integer total;
 
    /**
     * 订单总金额
     */
    private BigDecimal totalMoney;
 
    /**
     * 服务订单金额
     */
    private BigDecimal serviceTotalMoney;
 
    /**
     * 单品订单金额
     */
    private BigDecimal singleTotalMoney;
}