package com.gkhy.safePlatform.specialWork.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
/**
|
* 盲板抽堵作业
|
*/
|
@TableName("work_blind_plate_plugging")
|
public class WorkBlindPlatePluggingInfo implements Serializable {
|
|
private static final long serialVersionUID = 170884362269685250L;
|
|
//主键
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
//盲板编号
|
private String bpCode;
|
//主要介质
|
private String mainMedia;
|
//温度
|
private BigDecimal temperature;
|
//压力
|
private BigDecimal pressure;
|
//盲板材质
|
private String bpMaterialQuality;
|
//盲板规格
|
private String bpSpecification;
|
//盲板位置
|
private String bpLocation;
|
//盲板位置图路径
|
private String bpLocationMapPath;
|
//装盲板时间
|
private LocalDateTime installBpTime;
|
//拆盲板时间
|
private LocalDateTime uninstallBpTime;
|
//作业申请id
|
private Long workApplyId;
|
//涉及其他特殊作业
|
private String otherSpecialWork;
|
//状态
|
private Byte status;
|
//创建时间
|
private LocalDateTime gmtCreate;
|
//创建人id
|
private Long createUid;
|
//创建人姓名
|
private String createUname;
|
//修改时间
|
private LocalDateTime gmtModified;
|
//修改人id
|
private Long modifiedUid;
|
//修改人姓名
|
private String modifiedUname;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getBpCode() {
|
return bpCode;
|
}
|
|
public void setBpCode(String bpCode) {
|
this.bpCode = bpCode;
|
}
|
|
public String getMainMedia() {
|
return mainMedia;
|
}
|
|
public void setMainMedia(String mainMedia) {
|
this.mainMedia = mainMedia;
|
}
|
|
public BigDecimal getTemperature() {
|
return temperature;
|
}
|
|
public void setTemperature(BigDecimal temperature) {
|
this.temperature = temperature;
|
}
|
|
public BigDecimal getPressure() {
|
return pressure;
|
}
|
|
public void setPressure(BigDecimal pressure) {
|
this.pressure = pressure;
|
}
|
|
public String getBpMaterialQuality() {
|
return bpMaterialQuality;
|
}
|
|
public void setBpMaterialQuality(String bpMaterialQuality) {
|
this.bpMaterialQuality = bpMaterialQuality;
|
}
|
|
public String getBpSpecification() {
|
return bpSpecification;
|
}
|
|
public void setBpSpecification(String bpSpecification) {
|
this.bpSpecification = bpSpecification;
|
}
|
|
public String getBpLocation() {
|
return bpLocation;
|
}
|
|
public void setBpLocation(String bpLocation) {
|
this.bpLocation = bpLocation;
|
}
|
|
public String getBpLocationMapPath() {
|
return bpLocationMapPath;
|
}
|
|
public void setBpLocationMapPath(String bpLocationMapPath) {
|
this.bpLocationMapPath = bpLocationMapPath;
|
}
|
|
public LocalDateTime getInstallBpTime() {
|
return installBpTime;
|
}
|
|
public void setInstallBpTime(LocalDateTime installBpTime) {
|
this.installBpTime = installBpTime;
|
}
|
|
public LocalDateTime getUninstallBpTime() {
|
return uninstallBpTime;
|
}
|
|
public void setUninstallBpTime(LocalDateTime uninstallBpTime) {
|
this.uninstallBpTime = uninstallBpTime;
|
}
|
|
public Long getWorkApplyId() {
|
return workApplyId;
|
}
|
|
public void setWorkApplyId(Long workApplyId) {
|
this.workApplyId = workApplyId;
|
}
|
|
public String getOtherSpecialWork() {
|
return otherSpecialWork;
|
}
|
|
public void setOtherSpecialWork(String otherSpecialWork) {
|
this.otherSpecialWork = otherSpecialWork;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public LocalDateTime getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(LocalDateTime gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public Long getCreateUid() {
|
return createUid;
|
}
|
|
public void setCreateUid(Long createUid) {
|
this.createUid = createUid;
|
}
|
|
public String getCreateUname() {
|
return createUname;
|
}
|
|
public void setCreateUname(String createUname) {
|
this.createUname = createUname;
|
}
|
|
public LocalDateTime getGmtModified() {
|
return gmtModified;
|
}
|
|
public void setGmtModified(LocalDateTime gmtModified) {
|
this.gmtModified = gmtModified;
|
}
|
|
public Long getModifiedUid() {
|
return modifiedUid;
|
}
|
|
public void setModifiedUid(Long modifiedUid) {
|
this.modifiedUid = modifiedUid;
|
}
|
|
public String getModifiedUname() {
|
return modifiedUname;
|
}
|
|
public void setModifiedUname(String modifiedUname) {
|
this.modifiedUname = modifiedUname;
|
}
|
}
|