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,isStatistics = true)
|
private BigDecimal totalRevenue;
|
|
@Excel(name = "状态",width = 30,replace = {"生成中_1","待覆盖_2","已覆盖_3"})
|
private Integer status;
|
}
|