xuhy
3 天以前 508f3e225df87e0da974424981e7782fc5ce875c
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
package com.ruoyi.system.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import cn.afterturn.easypoi.excel.annotation.ExcelCollection;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
public class SumGeneratorClient {
    @Excel(name = "生成时间")
    private String generatorTime;
    @Excel(name = "店铺名称")
    private String shopName;
    @Excel(name = "实收金额")
    private BigDecimal allMoney;
    @Excel(name = "单均消费")
    private BigDecimal singleAvgAmount;
    @Excel(name = "人均消费")
    private BigDecimal perCapitaAmount;
 
    @Excel(name = "实收金额合计")
    private BigDecimal actualAmountSum;
    @Excel(name = "帐单数合计")
    private Integer orderCountSum;
    @Excel(name = "单均消费合计")
    private BigDecimal singleAmountSum;
    @Excel(name = "消费人数合计")
    private Integer perCountSum;
    @Excel(name = "人均消费合计")
    private BigDecimal perAmountSum;
    @ExcelCollection(name = "统计详情数据列表")
    private List<SumGeneratorDetailClient> orderStatistics;
 
}