| package doumeemes.dao.ext.vo; | 
|   | 
| import doumeemes.core.annotation.excel.ExcelColumn; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @author 江蹄蹄 | 
|  * @date 2022/07/12 10:30 | 
|  */ | 
| @Data | 
| @ApiModel("设备巡检信息表 EXT列表对象") | 
| public class DeviceCheckExtListVO { | 
|   | 
|     @ApiModelProperty(value = "主键", example = "1") | 
|     @ExcelColumn(name="主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "是否已删除 0未删除 1已删除", example = "1") | 
|     @ExcelColumn(name="是否已删除 0未删除 1已删除") | 
|     private Byte deleted; | 
|   | 
|     @ApiModelProperty(value = "创建人编码", example = "1") | 
|     @ExcelColumn(name="创建人编码") | 
|     private Integer createUser; | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     @ExcelColumn(name="创建时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") | 
|     private Date createTime; | 
|   | 
|     @ApiModelProperty(value = "更新人编码", example = "1") | 
|     @ExcelColumn(name="更新人编码") | 
|     private Integer updateUser; | 
|   | 
|     @ApiModelProperty(value = "更新时间") | 
|     @ExcelColumn(name="更新时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") | 
|     private Date updateTime; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     @ExcelColumn(name="备注") | 
|     private String remark; | 
|   | 
|     @ApiModelProperty(value = "主组织编码(关联department表根组织)", example = "1") | 
|     @ExcelColumn(name="主组织编码(关联department表根组织)") | 
|     private Integer rootDepartId; | 
|   | 
|     @ApiModelProperty(value = "公司级组织编码(关联department表根组织)", example = "1") | 
|     @ExcelColumn(name="公司级组织编码(关联department表根组织)") | 
|     private Integer comDepartId; | 
|   | 
|     @ApiModelProperty(value = "设备编码(关联device表)", example = "1") | 
|     @ExcelColumn(name="设备编码(关联device表)") | 
|     private Integer deviceId; | 
|   | 
|     @ApiModelProperty(value = "巡检时间") | 
|     @ExcelColumn(name="巡检时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") | 
|     private Date checkdate; | 
|   | 
|     @ApiModelProperty(value = "状态0正常 1异常", example = "1") | 
|     @ExcelColumn(name="状态0正常 1异常") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "巡检内容") | 
|     @ExcelColumn(name="巡检内容") | 
|     private String content; | 
|   | 
|     @ApiModelProperty(value = "处理时间") | 
|     @ExcelColumn(name="处理时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") | 
|     private Date dealDate; | 
|   | 
|     @ApiModelProperty(value = "处理人", example = "1") | 
|     @ExcelColumn(name="处理人") | 
|     private Integer dealUserId; | 
|   | 
|     @ApiModelProperty(value = "处理备注") | 
|     @ExcelColumn(name="处理备注") | 
|     private String dealInfo; | 
|   | 
|     @ApiModelProperty(value = "设备名称") | 
|     private String deviceName; | 
|   | 
|     @ApiModelProperty(value = "设备编码") | 
|     private String deviceCode; | 
|   | 
|     @ApiModelProperty(value = "工序名称") | 
|     private String proceduresName; | 
|   | 
|     @ApiModelProperty(value = "检验人名称") | 
|     private String userName; | 
|   | 
|     @ApiModelProperty(value = "编码") | 
|     private String code; | 
|   | 
| } |