package org.jeecg.modules.eam.entity; import com.baomidou.mybatisplus.annotation.FieldStrategy; import com.baomidou.mybatisplus.annotation.TableField; 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.jeecg.common.system.base.entity.JeecgEntity; import org.jeecgframework.poi.excel.annotation.Excel; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; /** * @Description: 真空热处理炉三保 * @Author: jeecg-boot * @Date: 2025-07-11 * @Version: V1.0 */ @Data @TableName("eam_third_maintenance_furnace") @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @ApiModel(value = "eam_third_maintenance_furnace对象", description = "真空热处理炉三保") public class EamThirdMaintenanceFurnace extends JeecgEntity implements Serializable { private static final long serialVersionUID = -5799611070364065336L; /** * 备注 */ @Excel(name = "备注", width = 15) @ApiModelProperty(value = "备注") private String remark; /** * 删除标记 */ @Excel(name = "删除标记", width = 15) @ApiModelProperty(value = "删除标记") private Integer delFlag; /** * 设备ID */ @Excel(name = "设备ID", width = 15) @ApiModelProperty(value = "设备ID") private String equipmentId; /** * 工单号 */ @Excel(name = "工单号", width = 15) @ApiModelProperty(value = "工单号") private String orderNum; /** * 计划保养日期 */ @ApiModelProperty(value = "计划保养日期;提前70天生成工单") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") @DateTimeFormat(pattern = "yyyy-MM-dd") private Date maintenanceDate; /** * 压缩空气压力(MPa) */ @Excel(name = "压缩空气压力(MPa)", width = 15) @ApiModelProperty(value = "压缩空气压力(MPa)") private String compressedAirPressureValue; /** * 极限真空(Pa) */ @Excel(name = "极限真空(Pa)", width = 15) @ApiModelProperty(value = "极限真空(Pa)") private String ultimateVacuumValue; /** * 泄漏率(Pa/h) */ @Excel(name = "泄漏率(Pa/h)", width = 15) @ApiModelProperty(value = "泄漏率(Pa/h)") private String leakRate; /** * 净化处理 */ @Excel(name = "净化处理", width = 15) @ApiModelProperty(value = "净化处理") private String purificationTreatment; /** * 炉温均匀性检测 */ @Excel(name = "炉温均匀性检测", width = 15) @ApiModelProperty(value = "炉温均匀性检测") private String furnaceTemperatureUniformityTesting; /** * 加热功率测试 */ @Excel(name = "加热功率测试", width = 15) @ApiModelProperty(value = "加热功率测试") private String heatingPowerTest; /** * 保养人 */ @Excel(name = "保养人", width = 15) @ApiModelProperty(value = "保养人") @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname") private String operator; /** * 保养时间 */ @ApiModelProperty(value = "保养时间") @Excel(name = "保养时间", width = 20, format = "yyyy-MM-dd HH:mm:ss") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date operateTime; /** * 保养状态;待提交、待确认、已完成 */ @Excel(name = "保养状态;待提交、待确认、已完成", width = 15) @ApiModelProperty(value = "保养状态;待提交、待确认、已完成") @Dict(dicCode = "third_maintenance_furnace_status") private String maintenanceStatus; /** * 能否满足加工需求;是否 */ @Excel(name = "能否满足加工需求;是否", width = 15) @ApiModelProperty(value = "能否满足加工需求;是否") private String processingRequirementsFlag; /** * 确认人 */ @Excel(name = "确认人", width = 15) @ApiModelProperty(value = "确认人") @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname") private String confirmUser; /** 确认类型 1 通过 2 驳回 */ @ApiModelProperty(value = "确认类型") private String confirmDealType; /** * 确认日期 */ @ApiModelProperty(value = "确认日期") @Excel(name = "确认日期", width = 20, format = "yyyy-MM-dd HH:mm:ss") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date confirmTime; /** * HF编码 */ @Excel(name = "HF编码", width = 15) @ApiModelProperty(value = "HF编码") private String hfCode; //列表展示 @TableField(exist = false) private String equipmentCode; @TableField(exist = false) private String equipmentName; @TableField(exist = false) private String equipmentModel; }