|
@@ -1,6 +1,9 @@
|
|
|
package com.rongwei.bsentity.domain;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.rongwei.rwcommon.base.BaseDo;
|
|
|
import lombok.NoArgsConstructor;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import lombok.Data;
|
|
@@ -18,324 +21,351 @@ import java.util.Date;
|
|
|
@AllArgsConstructor
|
|
|
@NoArgsConstructor
|
|
|
@Accessors(chain = true)
|
|
|
-@TableName("equ_overhaul_planning_task")
|
|
|
-public class EquOverhaulPlanningTasksDo implements Serializable {
|
|
|
+@TableName("equ_overhaul_planning_tasks")
|
|
|
+public class EquOverhaulPlanningTasksDo extends BaseDo implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
/**
|
|
|
- * table name:ID
|
|
|
- * table type:varchar(36)
|
|
|
- * table comment:主键
|
|
|
+ * 主键
|
|
|
*/
|
|
|
+ @TableId("ID")
|
|
|
private String id;
|
|
|
|
|
|
/**
|
|
|
- * table name:TENANTID
|
|
|
- * table type:varchar(36)
|
|
|
- * table comment:租户ID
|
|
|
+ * 租户ID
|
|
|
*/
|
|
|
+ @TableField("TENANTID")
|
|
|
private String tenantid;
|
|
|
|
|
|
/**
|
|
|
- * table name:ROPTION
|
|
|
- * table type:longtext
|
|
|
- * table comment:扩展json格式配置
|
|
|
+ * 扩展json格式配置
|
|
|
*/
|
|
|
+ @TableField("ROPTION")
|
|
|
private String roption;
|
|
|
|
|
|
/**
|
|
|
- * table name:DELETED
|
|
|
- * table type:char(1)
|
|
|
- * table comment:是否删除
|
|
|
+ * 任务号
|
|
|
*/
|
|
|
- private String deleted;
|
|
|
+ @TableField("TASKNUMBER")
|
|
|
+ private String tasknumber;
|
|
|
|
|
|
/**
|
|
|
- * table name:REMARK
|
|
|
- * table type:text
|
|
|
- * table comment:备注
|
|
|
+ * 大修分类
|
|
|
*/
|
|
|
- private String remark;
|
|
|
+ @TableField("REPAIRSCLASSIFICATION")
|
|
|
+ private String repairsclassification;
|
|
|
|
|
|
/**
|
|
|
- * table name:CREATEDATE
|
|
|
- * table type:datetime
|
|
|
- * table comment:创建时间
|
|
|
+ * 对象分类
|
|
|
*/
|
|
|
- private Date createdate;
|
|
|
+ @TableField("OBJECTCLASSIFICATION")
|
|
|
+ private String objectclassification;
|
|
|
|
|
|
/**
|
|
|
- * table name:CREATEUSERID
|
|
|
- * table type:varchar(36)
|
|
|
- * table comment:创建用户ID
|
|
|
+ * 设备ID
|
|
|
*/
|
|
|
- private String createuserid;
|
|
|
+ @TableField("EQUIPMENTID")
|
|
|
+ private String equipmentid;
|
|
|
|
|
|
/**
|
|
|
- * table name:MODIFYDATE
|
|
|
- * table type:datetime
|
|
|
- * table comment:修改日期
|
|
|
+ * 设备名称
|
|
|
*/
|
|
|
- private Date modifydate;
|
|
|
+ @TableField("EQUIPMENT")
|
|
|
+ private String equipment;
|
|
|
|
|
|
/**
|
|
|
- * table name:MODIFYUSERID
|
|
|
- * table type:varchar(36)
|
|
|
- * table comment:修改用户ID
|
|
|
+ * 规格型号
|
|
|
*/
|
|
|
- private String modifyuserid;
|
|
|
+ @TableField("SPECIFICATION")
|
|
|
+ private String specification;
|
|
|
|
|
|
/**
|
|
|
- * table name:CREATEUSERNAME
|
|
|
- * table type:varchar(50)
|
|
|
- * table comment:创建人名称
|
|
|
+ * 设备编号
|
|
|
*/
|
|
|
- private String createusername;
|
|
|
+ @TableField("EQUIPMENTNUMBER")
|
|
|
+ private String equipmentnumber;
|
|
|
|
|
|
/**
|
|
|
- * table name:MODIFYUSERNAME
|
|
|
- * table type:varchar(50)
|
|
|
- * table comment:修改人名称
|
|
|
+ * 设备类型
|
|
|
*/
|
|
|
- private String modifyusername;
|
|
|
+ @TableField("EQUIPMENTTYPE")
|
|
|
+ private String equipmenttype;
|
|
|
|
|
|
/**
|
|
|
- * table name:TASKID
|
|
|
- * table type:varchar(50)
|
|
|
- * table comment:任务号
|
|
|
+ * 安装区域
|
|
|
*/
|
|
|
- private String taskid;
|
|
|
+ @TableField("INSTALLATIONAREA")
|
|
|
+ private String installationarea;
|
|
|
|
|
|
/**
|
|
|
- * table name:PLANTYPE
|
|
|
- * table type:varchar(20)
|
|
|
- * table comment:计划分类
|
|
|
+ * 是否停机大修
|
|
|
*/
|
|
|
- private String plantype;
|
|
|
+ @TableField("ISHALTREPAIR")
|
|
|
+ private String ishaltrepair;
|
|
|
|
|
|
/**
|
|
|
- * table name:MAINTENANCETYPE
|
|
|
- * table type:varchar(20)
|
|
|
- * table comment:保养检修分类
|
|
|
+ * 所属工厂
|
|
|
*/
|
|
|
- private String maintenancetype;
|
|
|
+ @TableField("BELONGFACTORY")
|
|
|
+ private String belongfactory;
|
|
|
|
|
|
/**
|
|
|
- * table name:OBJECTTYPE
|
|
|
- * table type:varchar(20)
|
|
|
- * table comment:对象分类
|
|
|
+ * 设备使用车间ID
|
|
|
*/
|
|
|
- private String objecttype;
|
|
|
+ @TableField("EQUIPMENTWORKSHOPID")
|
|
|
+ private String equipmentworkshopid;
|
|
|
|
|
|
/**
|
|
|
- * table name:EQUIPMENTNAME
|
|
|
- * table type:varchar(50)
|
|
|
- * table comment:设备名称
|
|
|
+ * 设备使用车间名称
|
|
|
*/
|
|
|
- private String equipmentname;
|
|
|
+ @TableField("EQUIPMENTWORKSHOP")
|
|
|
+ private String equipmentworkshop;
|
|
|
|
|
|
/**
|
|
|
- * table name:EQUIPMENTID
|
|
|
- * table type:varchar(36)
|
|
|
- * table comment:设备ID
|
|
|
+ * 计划年份
|
|
|
*/
|
|
|
- private String equipmentid;
|
|
|
+ @TableField("PLANYEAR")
|
|
|
+ private String planyear;
|
|
|
|
|
|
/**
|
|
|
- * table name:EQUIPMENTNUMBER
|
|
|
- * table type:varchar(50)
|
|
|
- * table comment:设备编号
|
|
|
+ * 计划开始时间
|
|
|
*/
|
|
|
- private String equipmentnumber;
|
|
|
+ @TableField("PLANSTARTTIME")
|
|
|
+ private Date planstarttime;
|
|
|
|
|
|
/**
|
|
|
- * table name:SPECIFICATION
|
|
|
- * table type:varchar(50)
|
|
|
- * table comment:规格型号
|
|
|
+ * 计划结束时间
|
|
|
*/
|
|
|
- private String specification;
|
|
|
+ @TableField("PLANENDTIME")
|
|
|
+ private Date planendtime;
|
|
|
|
|
|
/**
|
|
|
- * table name:EQUIPMENTTYPE
|
|
|
- * table type:varchar(20)
|
|
|
- * table comment:设备分类
|
|
|
+ * 是否委外
|
|
|
*/
|
|
|
- private String equipmenttype;
|
|
|
+ @TableField("ISOUTSOURCING")
|
|
|
+ private String isoutsourcing;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 大修项目
|
|
|
+ */
|
|
|
+ @TableField("REPAIRPROJECT")
|
|
|
+ private String repairproject;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 大修原因
|
|
|
+ */
|
|
|
+ @TableField("REPAIRPREASON")
|
|
|
+ private String repairpreason;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 预计实施后效果
|
|
|
+ */
|
|
|
+ @TableField("EXPECTRESULT")
|
|
|
+ private String expectresult;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 大修负责人ID
|
|
|
+ */
|
|
|
+ @TableField("REPAIRHEADID")
|
|
|
+ private String repairheadid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 大修负责人
|
|
|
+ */
|
|
|
+ @TableField("REPAIRHEAD")
|
|
|
+ private String repairhead;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 其他维修工程师ID
|
|
|
+ */
|
|
|
+ @TableField("OTHERREPAIRENGINEERID")
|
|
|
+ private String otherrepairengineerid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 其他维修工程师
|
|
|
+ */
|
|
|
+ @TableField("OTHERREPAIRENGINEER")
|
|
|
+ private String otherrepairengineer;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 申请部门ID
|
|
|
+ */
|
|
|
+ @TableField("APPLICATIONDEPARTMENTID")
|
|
|
+ private String applicationdepartmentid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 申请部门
|
|
|
+ */
|
|
|
+ @TableField("APPLICATIONDEPARTMENT")
|
|
|
+ private String applicationdepartment;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 方案申请人
|
|
|
+ */
|
|
|
+ @TableField("PROPOSALAPPLICANT")
|
|
|
+ private String proposalapplicant;
|
|
|
|
|
|
/**
|
|
|
- * table name:ISOUTSOURCE
|
|
|
- * table type:varchar(10)
|
|
|
- * table comment:是否委外
|
|
|
+ * 方案申请时间
|
|
|
*/
|
|
|
- private String isoutsource;
|
|
|
+ @TableField("APPLICANTDATE")
|
|
|
+ private Date applicantdate;
|
|
|
|
|
|
/**
|
|
|
- * table name:AREA
|
|
|
- * table type:text
|
|
|
- * table comment:区域
|
|
|
+ * 大修方案说明
|
|
|
*/
|
|
|
- private String area;
|
|
|
+ @TableField("REPAIRILLUSTRATE")
|
|
|
+ private String repairillustrate;
|
|
|
|
|
|
/**
|
|
|
- * table name:PLANYEAR
|
|
|
- * table type:int
|
|
|
- * table comment:计划年份
|
|
|
+ * 预计费用明细
|
|
|
*/
|
|
|
- private Integer planyear;
|
|
|
+ @TableField("REPAIREXPECTCOSTDETAILS")
|
|
|
+ private String repairexpectcostdetails;
|
|
|
|
|
|
/**
|
|
|
- * table name:TASKSTART
|
|
|
- * table type:datetime
|
|
|
- * table comment:计划开始时间
|
|
|
+ * 是否危险作业
|
|
|
*/
|
|
|
- private Date taskstart;
|
|
|
+ @TableField("ISDANGEROUSOPERATIONS")
|
|
|
+ private String isdangerousoperations;
|
|
|
|
|
|
/**
|
|
|
- * table name:TASKEND
|
|
|
- * table type:datetime
|
|
|
- * table comment:计划结束时间
|
|
|
+ * 作业证相关资料
|
|
|
*/
|
|
|
- private Date taskend;
|
|
|
+ @TableField("WORKPERMITDATA")
|
|
|
+ private String workpermitdata;
|
|
|
|
|
|
/**
|
|
|
- * table name:MAINTENANCESITE
|
|
|
- * table type:text
|
|
|
- * table comment:维修部位
|
|
|
+ * 安全措施项
|
|
|
*/
|
|
|
- private String maintenancesite;
|
|
|
+ @TableField("SECURITYMEASURES")
|
|
|
+ private String securitymeasures;
|
|
|
|
|
|
/**
|
|
|
- * table name:MAINTENANCECONTENT
|
|
|
- * table type:text
|
|
|
- * table comment:计划大修内容
|
|
|
+ * 安全措施落实情况
|
|
|
*/
|
|
|
- private String maintenancecontent;
|
|
|
+ @TableField("SECURITYIMPLEMENTATIONSTATUS")
|
|
|
+ private String securityimplementationstatus;
|
|
|
|
|
|
/**
|
|
|
- * table name:PLANT
|
|
|
- * table type:varchar(35)
|
|
|
- * table comment:所属工厂
|
|
|
+ * 实际开始时间
|
|
|
*/
|
|
|
- private String plant;
|
|
|
+ @TableField("REALITYSTARTTIME")
|
|
|
+ private Date realitystarttime;
|
|
|
|
|
|
/**
|
|
|
- * table name:WORKSHOPID
|
|
|
- * table type:varchar(36)
|
|
|
- * table comment:使用车间ID
|
|
|
+ * 实际结束时间
|
|
|
*/
|
|
|
- private String workshopid;
|
|
|
+ @TableField("REALITYNDTIME")
|
|
|
+ private Date realityndtime;
|
|
|
|
|
|
/**
|
|
|
- * table name:WORKSHOP
|
|
|
- * table type:varchar(50)
|
|
|
- * table comment:使用车间
|
|
|
+ * 设备大修过程
|
|
|
*/
|
|
|
- private String workshop;
|
|
|
+ @TableField("EQUIPMENTREPAIRPROCESS")
|
|
|
+ private String equipmentrepairprocess;
|
|
|
|
|
|
/**
|
|
|
- * table name:USERID
|
|
|
- * table type:text
|
|
|
- * table comment:使用人ID
|
|
|
+ * 大修开机情况
|
|
|
*/
|
|
|
- private String userid;
|
|
|
+ @TableField("REPAIRPPOWERONSITUATION")
|
|
|
+ private String repairppoweronsituation;
|
|
|
|
|
|
/**
|
|
|
- * table name:USER
|
|
|
- * table type:text
|
|
|
- * table comment:使用人
|
|
|
+ * 跟踪人
|
|
|
*/
|
|
|
- private String user;
|
|
|
+ @TableField("ONWTRACKER")
|
|
|
+ private String onwtracker;
|
|
|
|
|
|
/**
|
|
|
- * table name:PRINCIPALID
|
|
|
- * table type:text
|
|
|
- * table comment:责任人ID
|
|
|
+ * 跟踪人日期
|
|
|
*/
|
|
|
- private String principalid;
|
|
|
+ @TableField("ONWTRACKERTIME")
|
|
|
+ private Date onwtrackertime;
|
|
|
|
|
|
/**
|
|
|
- * table name:PRINCIPAL
|
|
|
- * table type:text
|
|
|
- * table comment:大修责任人
|
|
|
+ * 跟踪人
|
|
|
*/
|
|
|
- private String principal;
|
|
|
+ @TableField("TWOTRACKER")
|
|
|
+ private String twotracker;
|
|
|
|
|
|
/**
|
|
|
- * table name:OTHERENGINEERS
|
|
|
- * table type:text
|
|
|
- * table comment:其他工程师
|
|
|
+ * 跟踪人日期
|
|
|
*/
|
|
|
- private String otherengineers;
|
|
|
+ @TableField("TWOTRACKERTIME")
|
|
|
+ private Date twotrackertime;
|
|
|
|
|
|
/**
|
|
|
- * table name:APPLYTYPE
|
|
|
- * table type:varchar(20)
|
|
|
- * table comment:申请类型
|
|
|
+ * 跟踪人
|
|
|
*/
|
|
|
- private String applytype;
|
|
|
+ @TableField("THREETRACKER")
|
|
|
+ private String threetracker;
|
|
|
|
|
|
/**
|
|
|
- * table name:EQUIPMENTFAULT
|
|
|
- * table type:text
|
|
|
- * table comment:设备故障图
|
|
|
+ * 跟踪人日期
|
|
|
*/
|
|
|
- private String equipmentfault;
|
|
|
+ @TableField("THREETRACKERTIME")
|
|
|
+ private Date threetrackertime;
|
|
|
|
|
|
/**
|
|
|
- * table name:ISHAZARDOUSOPERATION
|
|
|
- * table type:varchar(10)
|
|
|
- * table comment:是否危险作业
|
|
|
+ * 大修结论
|
|
|
*/
|
|
|
- private String ishazardousoperation;
|
|
|
+ @TableField("REPAIRCONCLUSION")
|
|
|
+ private String repairconclusion;
|
|
|
|
|
|
/**
|
|
|
- * table name:OPERATIONALDATA
|
|
|
- * table type:text
|
|
|
- * table comment:作业相关资料
|
|
|
+ * 验收人
|
|
|
*/
|
|
|
- private String operationaldata;
|
|
|
+ @TableField("ACCEPTANCEPERSON")
|
|
|
+ private String acceptanceperson;
|
|
|
|
|
|
/**
|
|
|
- * table name:SAFETYMEASUREITEM
|
|
|
- * table type:text
|
|
|
- * table comment:安全措施项
|
|
|
+ * 验收日期
|
|
|
*/
|
|
|
- private String safetymeasureitem;
|
|
|
+ @TableField("ACCEPTANCETIME")
|
|
|
+ private Date acceptancetime;
|
|
|
|
|
|
/**
|
|
|
- * table name:IMPLEMENTATION
|
|
|
- * table type:text
|
|
|
- * table comment:安全措施落实情况
|
|
|
+ * 车间确认人
|
|
|
*/
|
|
|
- private String implementation;
|
|
|
+ @TableField("WORKSHOPCONFIRMPEOPLE")
|
|
|
+ private String workshopconfirmpeople;
|
|
|
|
|
|
/**
|
|
|
- * table name:APPLICATIONDEPTID
|
|
|
- * table type:varchar(36)
|
|
|
- * table comment:申请部门ID
|
|
|
+ * 设备部验收人
|
|
|
*/
|
|
|
- private String applicationdeptid;
|
|
|
+ @TableField("EQUIPMENTACCEPTANCEPERSON")
|
|
|
+ private String equipmentacceptanceperson;
|
|
|
|
|
|
/**
|
|
|
- * table name:APPLICATIONDEPT
|
|
|
- * table type:varchar(50)
|
|
|
- * table comment:申请部门
|
|
|
+ * 大修效果验收情况
|
|
|
*/
|
|
|
- private String applicationdept;
|
|
|
+ @TableField("REPAIRACCEPTANCESITUATION")
|
|
|
+ private String repairacceptancesituation;
|
|
|
|
|
|
/**
|
|
|
- * table name:OTHERENGINEERSID
|
|
|
- * table type:text
|
|
|
- * table comment:其他工程师ID
|
|
|
+ * 年度
|
|
|
*/
|
|
|
- private String otherengineersid;
|
|
|
+ @TableField("YEAR")
|
|
|
+ private String year;
|
|
|
|
|
|
/**
|
|
|
- * table name:TASKSTATUS
|
|
|
- * table type:varchar(20)
|
|
|
- * table comment:任务状态
|
|
|
+ * 申请编号
|
|
|
*/
|
|
|
+ @TableField("APPLYNUMBER")
|
|
|
+ private String applynumber;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 任务状态
|
|
|
+ */
|
|
|
+ @TableField("TASKSTATUS")
|
|
|
private String taskstatus;
|
|
|
|
|
|
+ /**
|
|
|
+ * 设备待大修图
|
|
|
+ */
|
|
|
+ @TableField("EQUIPMENTREPAIRIMAGE")
|
|
|
+ private String equipmentrepairimage;
|
|
|
+
|
|
|
}
|