xuhy
2024-09-11 9ca97fd558700e7054c5f54192a9db7a1e6b8230
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
package com.ruoyi.system.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
public class SaleGeneratorListExport implements Serializable {
 
    @Excel(name = "营业数据生成时间",width = 30)
    private String generatorTime;
 
    @Excel(name = "操作人",width = 30)
    private String userName;
 
    @Excel(name = "店铺名称",width = 30)
    private String shopName;
 
    @Excel(name = "覆盖时间段",width = 30)
    private String startTimeStr;
 
    @Excel(name = "生成营业额合计(元)",width = 30)
    private BigDecimal totalRevenue;
 
    @Excel(name = "状态",width = 30,replace = {"生成中_1","待覆盖_2","已覆盖_3"})
    private Integer status;
}