lyh
9 天以前 a9e041cfce0bacbf37f8c28ca02d816aa385dc35
lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/entity/EamSecondMaintenanceOrder.java
@@ -78,7 +78,7 @@
     */
    @Excel(name = "标准ID", width = 15)
    @ApiModelProperty(value = "标准ID")
    @Dict(dicCode = "eam_maintenance_standard, standard_name, id")
    @Dict(dictTable = "eam_maintenance_standard", dicCode = "id", dicText = "standard_name")
    private String standardId;
    /**
     * 计划保养日期
@@ -101,15 +101,16 @@
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date actualEndTime;
    /** 操作工 */
    @ApiModelProperty(value = "操作工")
    @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname")
    private String operator ;
    /** 维修工 */
    @ApiModelProperty(value = "维修工")
    @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname")
    private String repairman ;
    /**
     * 保养人
     */
    @Excel(name = "保养人", width = 15)
    @ApiModelProperty(value = "保养人")
    @Dict(dicCode = "sys_user, realname, username")
    private String operator;
    /**
     * 保养状态
     * 保养状态  待保养、保养中、管理员确认、检查人确认、已完成
     */
    @Excel(name = "保养状态", width = 15)
    @ApiModelProperty(value = "保养状态")
@@ -123,55 +124,50 @@
    @Dict(dicCode = "order_creation_method")
    private String creationMethod;
    /**
     * 维修组长确认
     * 管理员确认
     */
    @Excel(name = "维修组长确认", width = 15)
    @ApiModelProperty(value = "维修组长确认")
    @Dict(dicCode = "sys_user, realname, username")
    private String confirmUser;
    @Excel(name = "管理员确认", width = 15)
    @ApiModelProperty(value = "管理员确认")
    @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname")
    private String manageUser;
    /**
     * 确认意见
     * 管理员确认结果
     */
    @ApiModelProperty(value = "确认意见")
    private String confirmComment;
    /** 确认类型 1 通过  2 驳回 */
    @ApiModelProperty(value = "确认类型")
    @Dict(dicCode = "approved_rejected")
    private String confirmDealType;
    /**
     * 确认时间
     */
    @ApiModelProperty(value = "确认时间")
    @ApiModelProperty(value = "管理员确认结果")
    @Dict(dicCode = "approve_reject")
    private String manageUserResult;
    /** 问题描述;默认 无 */
    @ApiModelProperty(name = "问题描述",notes = "默认 无")
    private String problemDescription ;
    /** 处理描述;默认 无 */
    @ApiModelProperty(name = "处理描述",notes = "默认 无")
    private String dealDescription ;
    /** 管理员确认时间 */
    @ApiModelProperty(name = "管理员确认时间",notes = "")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date confirmTime;
    /** 检查人确认 */
    @ApiModelProperty(name = "检查人确认",notes = "")
    @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname")
    private String inspector;
    /**
     * 单位领导确认
     * 检查人确认结果
     */
    @Excel(name = "单位领导确认", width = 15)
    @ApiModelProperty(value = "单位领导确认")
    @Dict(dicCode = "sys_user, realname, username")
    private String confirmLeader;
    /**
     * 领导意见
     */
    @ApiModelProperty(value = "领导意见")
    private String leaderConfirmComment;
    /**
     * 领导确认时间
     */
    @ApiModelProperty(value = "领导确认时间")
    @ApiModelProperty(name = "检查人确认结果",notes = "")
    @Dict(dicCode = "approve_reject")
    private String inspectorResult;
    /** 检查人意见 */
    @ApiModelProperty(name = "检查人意见",notes = "")
    private String inspectConfirmComment;
    /** 检查人确认时间 */
    @ApiModelProperty(name = "检查人确认时间",notes = "")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date leaderConfirmTime;
    /**
     * 保养上传图片
     */
    @Excel(name = "保养上传图片", width = 15)
    @ApiModelProperty(value = "保养上传图片")
    private String imageFiles;
    private Date inspectConfirmTime;
    /** HF编码 */
    @ApiModelProperty(name = "HF编码",notes = "")
    private String hfCode;
    /**
     * 备注
     */
@@ -184,4 +180,7 @@
    private String equipmentCode;
    @TableField(exist = false)
    private String equipmentName;
    //型号
    @TableField(exist = false)
    private String equipmentModel;
}