rk
昨天 d5397923196daf2c54f00e927492261d66e1feb2
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
37
package com.doumee.dao.business.vo;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 月台_用水用气信息记录表
 * @author 江蹄蹄
 * @date 2024/08/26 16:22
 */
@Data
public class PlatformWaterGasForExcelVO {
 
    @ApiModelProperty(value = "更新时间")
    @ExcelColumn(name="最近操作时间",index = 5,dateFormat="yyyy-MM-dd HH:mm",width = 20)
    private Date editDate;
 
    @ApiModelProperty(value = "时间(年月)")
    @ExcelColumn(name="使用月份",index = 2,dateFormat="yyyy-MM",width = 10)
    private Date timeInfo;
 
    @ApiModelProperty(value = "类型 0用水 1用气 2用油 3烟箱", example = "1")
    @ExcelColumn(name="类型",valueMapping = "0=用水;1=用气;2=用油;3=烟箱;",index = 0,width = 10)
    private Integer type;
 
    @ApiModelProperty(value = "数量 (用电顿,用电度; 油耗L)", example = "1")
    @ExcelColumn(name="数量",index = 3,width = 10)
    private BigDecimal num;
 
    @ApiModelProperty(value = "说明")
    @ExcelColumn(name="说明",index = 4,width = 20)
    private String content;
}