zhangherong
2025-05-14 a16b8f1035fa93ac1333fb273da2c48b68bf7126
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/EamSecondMaintenanceOrder.java
@@ -1,14 +1,18 @@
package org.jeecg.modules.eam.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
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;
@@ -55,44 +59,63 @@
   /**标准ID*/
   @Excel(name = "标准ID", width = 15)
    @ApiModelProperty(value = "标准ID")
   @Dict(dicCode = "eam_maintenance_standard, standard_name, id")
   private String standardId;
   /**计划开始时间*/
    @ApiModelProperty(value = "计划开始时间")
   private Date planStartTime;
   /**计划结束时间*/
    @ApiModelProperty(value = "计划结束时间")
   private Date planEndTime;
   /**计划保养日期*/
    @ApiModelProperty(value = "计划保养日期")
   @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
   @DateTimeFormat(pattern = "yyyy-MM-dd")
   private Date maintenanceDate;
   /**实际开始时间*/
    @ApiModelProperty(value = "实际开始时间")
   @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   private Date actualStartTime;
   /**实际结束时间*/
    @ApiModelProperty(value = "实际结束时间")
   @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   private Date actualEndTime;
   /**保养人*/
   @Excel(name = "保养人", width = 15)
    @ApiModelProperty(value = "保养人")
   @Dict(dicCode = "sys_user, realname, username")
   private String operator;
   /**保养状态*/
   @Excel(name = "保养状态", width = 15)
    @ApiModelProperty(value = "保养状态")
   @Dict(dicCode = "second_maintenance_status")
   private String maintenanceStatus;
   /**创建方式*/
   @Excel(name = "创建方式", width = 15)
    @ApiModelProperty(value = "创建方式")
   @Dict(dicCode = "order_creation_method")
   private String creationMethod;
   /**设备管理员确认*/
   @Excel(name = "设备管理员确认", width = 15)
    @ApiModelProperty(value = "设备管理员确认")
   /**维修组长确认*/
   @Excel(name = "维修组长确认", width = 15)
    @ApiModelProperty(value = "维修组长确认")
   @Dict(dicCode = "sys_user, realname, username")
   private String confirmUser;
   /**确认意见*/
   @ApiModelProperty(value = "确认意见")
   private String confirmComment;
   /**确认时间*/
    @ApiModelProperty(value = "确认时间")
   @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   private Date confirmTime;
   /**照片文件ids;id以逗号分隔*/
   @Excel(name = "照片文件ids;id以逗号分隔", width = 15)
    @ApiModelProperty(value = "照片文件ids;id以逗号分隔")
   /**保养上传图片*/
   @Excel(name = "保养上传图片", width = 15)
    @ApiModelProperty(value = "保养上传图片")
   private String imageFiles;
   /**备注*/
   @Excel(name = "备注", width = 15)
    @ApiModelProperty(value = "备注")
   private String remark;
   //列表展示
   @TableField(exist = false)
   private String equipmentCode;
   @TableField(exist = false)
   private String equipmentName;
}