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
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 SumGeneratorDetailClient {
    @Excel(name = "日期")
    private String dayTime;
    @Excel(name = "实收金额")
    private BigDecimal actualAmount = BigDecimal.ZERO;
    @Excel(name = "帐单数")
    private Integer orderCount = 0;
    @Excel(name = "单均消费")
    private BigDecimal singleAmount = BigDecimal.ZERO;
    @Excel(name = "消费人数")
    private Integer perCount = 0;
    @Excel(name = "人均消费")
    private BigDecimal perAmount = BigDecimal.ZERO;
 
}