| 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; | 
| } |