package org.jeecg.modules.eam.request; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableLogic; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import org.jeecg.common.aspect.annotation.Dict; import org.jeecgframework.poi.excel.annotation.Excel; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @ApiModel(value="三不原则", description="三不原则") public class EamReportThreeNoSpareQuery implements Serializable { private static final long serialVersionUID = 1L; /**主键*/ @TableId(type = IdType.ASSIGN_ID) @ApiModelProperty(value = "主键") private String id; /**创建人*/ @ApiModelProperty(value = "创建人") private String createBy; /**创建日期*/ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "创建日期") private Date createTime; /**更新人*/ @ApiModelProperty(value = "更新人") private String updateBy; /**更新日期*/ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "更新日期") private Date updateTime; /**删除标记*/ @Excel(name = "删除标记", width = 15) @ApiModelProperty(value = "删除标记") @TableLogic private Integer delFlag; /**报修ID*/ @Excel(name = "报修ID", width = 15) @ApiModelProperty(value = "报修ID") private String reportId; /**设备ID*/ @Excel(name = "设备ID", width = 15) @ApiModelProperty(value = "设备ID") private String equipmentId; /**HF编码*/ @Excel(name = "HF编码", width = 15) @ApiModelProperty(value = "HF编码") private String hfCode; /**提交状态*/ @Excel(name = "提交状态", width = 15) @ApiModelProperty(value = "提交状态") @Dict(dicCode = "report_three_no_spare_submit_status") private String submitStatus; /**原因分析*/ @Excel(name = "原因分析", width = 15) @ApiModelProperty(value = "原因分析") private String causeAnalysis; /**培训教育*/ @Excel(name = "培训教育", width = 15) @ApiModelProperty(value = "培训教育") @Dict(dicCode = "yn") private String isTrainingEducation; /**培训形式*/ @Excel(name = "培训形式", width = 15) @ApiModelProperty(value = "培训形式") private String trainingFormat; /**培训内容*/ @Excel(name = "培训内容", width = 15) @ApiModelProperty(value = "培训内容") private String trainingContent; /**培训人*/ @Excel(name = "培训人", width = 15) @ApiModelProperty(value = "培训人") @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") private String trainingUser; /**培训时间*/ @Excel(name = "培训时间", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "培训时间") private Date trainingUserTime; /**预防措施*/ @Excel(name = "预防措施", width = 15) @ApiModelProperty(value = "预防措施") private String preventionMeasures; /**单位领导*/ @Excel(name = "单位领导", width = 15) @ApiModelProperty(value = "单位领导") @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") private String unitLeader; /**领导意见*/ @Excel(name = "领导意见", width = 15) @ApiModelProperty(value = "领导意见") private String leaderOpinion; /**领导确认结果*/ @Excel(name = "领导确认结果", width = 15) @ApiModelProperty(value = "领导确认结果") private String leaderConfirmResult; /**领导确认时间*/ @Excel(name = "领导确认时间", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "领导确认时间") private Date leaderConfirmTime; /**事故现象*/ @Excel(name = "事故现象", width = 15) @ApiModelProperty(value = "事故现象") private transient String accidentPhenomenon; /**采取措施*/ @Excel(name = "采取措施", width = 15) @ApiModelProperty(value = "采取措施") private transient String measure; /**造成结果*/ @Excel(name = "造成结果", width = 15) @ApiModelProperty(value = "造成结果") private transient String causingResults; //列表展示 @TableField(exist = false) private String equipmentCode; @TableField(exist = false) private String equipmentName; @TableField(exist = false) private String equipmentModel; @TableField(exist = false) private String installationPosition; private String column; private String order; }