package com.gk.hotwork.Domain;
|
|
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 java.io.Serializable;
|
import java.util.List;
|
|
@TableName("subtask")
|
public class SubTaskInfo implements Serializable {
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/** 任务编号 taskcode **/
|
private String taskcode;
|
|
/** 作业类型 type **/
|
private String type;
|
|
/** 作业类别 category **/
|
private String category;
|
|
/** 作业级别 level **/
|
private Byte level;
|
|
/** 是否选中(0:否;1:是) checked **/
|
private Byte checked;
|
|
/** 受限空间分类 spacecategory **/
|
private String spacecategory;
|
|
/** 受限空间名称 spacename **/
|
private String spacename;
|
|
/** 受限空间介质名称 spacemedium **/
|
private String spacemedium;
|
|
/** 是否酸碱腐蚀 acibase **/
|
private String acibase;
|
|
/** 吊装作业重量(单位:t) hoistingweight **/
|
private Double hoistingweight;
|
|
/** 动土作业深度(单位:m) soildepth **/
|
private Double soildepth;
|
|
/** 动土作业面积(单位:㎡) soilarea **/
|
private Double soilarea;
|
|
/** 动土文件地址 soilfile **/
|
@TableField(exist = false)
|
private List<TaskEnclosure> soilfile;
|
|
/** 断路原因 breakreason **/
|
private String breakreason;
|
|
@TableField(exist = false)
|
private List<TaskEnclosure> breakfile;
|
|
/** 高处作业作业高度 workheight **/
|
private Double workheight;
|
|
/** 电源接入点 electricityarea **/
|
private String electricityarea;
|
|
/** 工作电压 voltage **/
|
private String voltage;
|
|
/** 功率 power **/
|
private String power;
|
|
/** 设备管道名称 pipename **/
|
private String pipename;
|
|
/** 设备管道介质 pipemedium **/
|
private String pipemedium;
|
|
/** 设备管道温度 pipetemperature **/
|
private String pipetemperature;
|
|
/** 设备管道压力 pipepressure **/
|
private String pipepressure;
|
|
/** 盲板材质 blindboardmaterial **/
|
private String blindboardmaterial;
|
|
/** 盲板规格 blindboardspecification **/
|
private String blindboardspecification;
|
|
/** 盲板编号 blindboardnumber **/
|
private String blindboardnumber;
|
|
/** 生产单位作业指挥 commander **/
|
private String commander;
|
|
/** 盲板位置图 blindboardlocation **/
|
@TableField(exist = false)
|
private List<TaskEnclosure> blindboardlocation;
|
|
/** 动火方式 firetype **/
|
private String firetype;
|
|
private String hoistinglevel;
|
|
private String heightlevel;
|
|
/** id **/
|
public Long getId() {
|
return id;
|
}
|
|
/** id **/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/** 任务编号 taskcode **/
|
public String getTaskcode() {
|
return taskcode;
|
}
|
|
/** 任务编号 taskcode **/
|
public void setTaskcode(String taskcode) {
|
this.taskcode = taskcode == null ? null : taskcode.trim();
|
}
|
|
/** 作业类型 type **/
|
public String getType() {
|
return type;
|
}
|
|
/** 作业类型 type **/
|
public void setType(String type) {
|
this.type = type == null ? null : type.trim();
|
}
|
|
/** 作业类别 category **/
|
public String getCategory() {
|
return category;
|
}
|
|
/** 作业类别 category **/
|
public void setCategory(String category) {
|
this.category = category == null ? null : category.trim();
|
}
|
|
/** 作业级别 level **/
|
public Byte getLevel() {
|
return level;
|
}
|
|
/** 作业级别 level **/
|
public void setLevel(Byte level) {
|
this.level = level;
|
}
|
|
/** 是否选中(0:否;1:是) checked **/
|
public Byte getChecked() {
|
return checked;
|
}
|
|
/** 是否选中(0:否;1:是) checked **/
|
public void setChecked(Byte checked) {
|
this.checked = checked;
|
}
|
|
/** 受限空间分类 spacecategory **/
|
public String getSpacecategory() {
|
return spacecategory;
|
}
|
|
/** 受限空间分类 spacecategory **/
|
public void setSpacecategory(String spacecategory) {
|
this.spacecategory = spacecategory == null ? null : spacecategory.trim();
|
}
|
|
/** 受限空间名称 spacename **/
|
public String getSpacename() {
|
return spacename;
|
}
|
|
/** 受限空间名称 spacename **/
|
public void setSpacename(String spacename) {
|
this.spacename = spacename == null ? null : spacename.trim();
|
}
|
|
/** 受限空间介质名称 spacemedium **/
|
public String getSpacemedium() {
|
return spacemedium;
|
}
|
|
/** 受限空间介质名称 spacemedium **/
|
public void setSpacemedium(String spacemedium) {
|
this.spacemedium = spacemedium == null ? null : spacemedium.trim();
|
}
|
|
/** 是否酸碱腐蚀 acibase **/
|
public String getAcibase() {
|
return acibase;
|
}
|
|
/** 是否酸碱腐蚀 acibase **/
|
public void setAcibase(String acibase) {
|
this.acibase = acibase == null ? null : acibase.trim();
|
}
|
|
/** 吊装作业重量(单位:t) hoistingweight **/
|
public Double getHoistingweight() {
|
return hoistingweight;
|
}
|
|
/** 吊装作业重量(单位:t) hoistingweight **/
|
public void setHoistingweight(Double hoistingweight) {
|
this.hoistingweight = hoistingweight;
|
}
|
|
/** 动土作业深度(单位:m) soildepth **/
|
public Double getSoildepth() {
|
return soildepth;
|
}
|
|
/** 动土作业深度(单位:m) soildepth **/
|
public void setSoildepth(Double soildepth) {
|
this.soildepth = soildepth;
|
}
|
|
/** 动土作业面积(单位:㎡) soilarea **/
|
public Double getSoilarea() {
|
return soilarea;
|
}
|
|
/** 动土作业面积(单位:㎡) soilarea **/
|
public void setSoilarea(Double soilarea) {
|
this.soilarea = soilarea;
|
}
|
|
public List<TaskEnclosure> getSoilfile() {
|
return soilfile;
|
}
|
|
public void setSoilfile(List<TaskEnclosure> soilfile) {
|
this.soilfile = soilfile;
|
}
|
|
/** 断路原因 breakreason **/
|
public String getBreakreason() {
|
return breakreason;
|
}
|
|
/** 断路原因 breakreason **/
|
public void setBreakreason(String breakreason) {
|
this.breakreason = breakreason == null ? null : breakreason.trim();
|
}
|
|
/** 高处作业作业高度 workheight **/
|
public Double getWorkheight() {
|
return workheight;
|
}
|
|
/** 高处作业作业高度 workheight **/
|
public void setWorkheight(Double workheight) {
|
this.workheight = workheight;
|
}
|
|
/** 电源接入点 electricityarea **/
|
public String getElectricityarea() {
|
return electricityarea;
|
}
|
|
/** 电源接入点 electricityarea **/
|
public void setElectricityarea(String electricityarea) {
|
this.electricityarea = electricityarea == null ? null : electricityarea.trim();
|
}
|
|
/** 工作电压 voltage **/
|
public String getVoltage() {
|
return voltage;
|
}
|
|
/** 工作电压 voltage **/
|
public void setVoltage(String voltage) {
|
this.voltage = voltage == null ? null : voltage.trim();
|
}
|
|
/** 功率 power **/
|
public String getPower() {
|
return power;
|
}
|
|
/** 功率 power **/
|
public void setPower(String power) {
|
this.power = power == null ? null : power.trim();
|
}
|
|
/** 设备管道名称 pipename **/
|
public String getPipename() {
|
return pipename;
|
}
|
|
/** 设备管道名称 pipename **/
|
public void setPipename(String pipename) {
|
this.pipename = pipename == null ? null : pipename.trim();
|
}
|
|
/** 设备管道介质 pipemedium **/
|
public String getPipemedium() {
|
return pipemedium;
|
}
|
|
/** 设备管道介质 pipemedium **/
|
public void setPipemedium(String pipemedium) {
|
this.pipemedium = pipemedium == null ? null : pipemedium.trim();
|
}
|
|
/** 设备管道温度 pipetemperature **/
|
public String getPipetemperature() {
|
return pipetemperature;
|
}
|
|
/** 设备管道温度 pipetemperature **/
|
public void setPipetemperature(String pipetemperature) {
|
this.pipetemperature = pipetemperature == null ? null : pipetemperature.trim();
|
}
|
|
/** 设备管道压力 pipepressure **/
|
public String getPipepressure() {
|
return pipepressure;
|
}
|
|
/** 设备管道压力 pipepressure **/
|
public void setPipepressure(String pipepressure) {
|
this.pipepressure = pipepressure == null ? null : pipepressure.trim();
|
}
|
|
/** 盲板材质 blindboardmaterial **/
|
public String getBlindboardmaterial() {
|
return blindboardmaterial;
|
}
|
|
/** 盲板材质 blindboardmaterial **/
|
public void setBlindboardmaterial(String blindboardmaterial) {
|
this.blindboardmaterial = blindboardmaterial == null ? null : blindboardmaterial.trim();
|
}
|
|
/** 盲板规格 blindboardspecification **/
|
public String getBlindboardspecification() {
|
return blindboardspecification;
|
}
|
|
/** 盲板规格 blindboardspecification **/
|
public void setBlindboardspecification(String blindboardspecification) {
|
this.blindboardspecification = blindboardspecification == null ? null : blindboardspecification.trim();
|
}
|
|
/** 盲板编号 blindboardnumber **/
|
public String getBlindboardnumber() {
|
return blindboardnumber;
|
}
|
|
/** 盲板编号 blindboardnumber **/
|
public void setBlindboardnumber(String blindboardnumber) {
|
this.blindboardnumber = blindboardnumber == null ? null : blindboardnumber.trim();
|
}
|
|
/** 生产单位作业指挥 commander **/
|
public String getCommander() {
|
return commander;
|
}
|
|
/** 生产单位作业指挥 commander **/
|
public void setCommander(String commander) {
|
this.commander = commander == null ? null : commander.trim();
|
}
|
|
public List<TaskEnclosure> getBreakfile() {
|
return breakfile;
|
}
|
|
public void setBreakfile(List<TaskEnclosure> breakfile) {
|
this.breakfile = breakfile;
|
}
|
|
public List<TaskEnclosure> getBlindboardlocation() {
|
return blindboardlocation;
|
}
|
|
public void setBlindboardlocation(List<TaskEnclosure> blindboardlocation) {
|
this.blindboardlocation = blindboardlocation;
|
}
|
|
/** 动火方式 firetype **/
|
public String getFiretype() {
|
return firetype;
|
}
|
|
/** 动火方式 firetype **/
|
public void setFiretype(String firetype) {
|
this.firetype = firetype == null ? null : firetype.trim();
|
}
|
|
public String getHoistinglevel() {
|
return hoistinglevel;
|
}
|
|
public void setHoistinglevel(String hoistinglevel) {
|
this.hoistinglevel = hoistinglevel;
|
}
|
|
public String getHeightlevel() {
|
return heightlevel;
|
}
|
|
public void setHeightlevel(String heightlevel) {
|
this.heightlevel = heightlevel;
|
}
|
}
|