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
package com.ruoyi.system.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
public class MealGeneratorListExport 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 String revenueRange;
 
    @Excel(name = "生成营业额合计(元)",width = 30,isStatistics = true)
    private BigDecimal totalRevenue;
 
    @Excel(name = "状态",width = 30,replace = {"生成中_1","待覆盖_2","已覆盖_3"})
    private Integer status;
 
}