package com.gkhy.safePlatform.safeCheck.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
/**
|
* 任务单元
|
*/
|
@TableName("safe_check_task_unit")
|
public class SafeCheckTaskUnit {
|
|
private Long id;
|
|
private String uuid;
|
|
//删除标志:0-有效,1-删除
|
private Byte deleteStatus;
|
|
//任务单元状态:1-开启;2-关闭,3-过期
|
private Byte taskUnitStatus;
|
|
//任务单元名称
|
private String unitName;
|
|
//文档地址
|
private String fileAddress;
|
|
//巡检链中的巡检点的个数
|
private int pointsLength;
|
|
//企业id
|
private Long enterpriseId;
|
|
//企业uuid
|
private String enterpriseUuid;
|
|
//创建时间
|
private Date gmtCreate;
|
|
//最后修改时间
|
private Date gmtModitify;
|
|
//创建人
|
private String createUserName;
|
|
//修改人
|
private String lastEditUserName;
|
|
//备注或描述信息
|
private String note;
|
|
public String getFileAddress() {
|
return fileAddress;
|
}
|
|
public void setFileAddress(String fileAddress) {
|
this.fileAddress = fileAddress;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getUuid() {
|
return uuid;
|
}
|
|
public void setUuid(String uuid) {
|
this.uuid = uuid;
|
}
|
|
public Byte getDeleteStatus() {
|
return deleteStatus;
|
}
|
|
public void setDeleteStatus(Byte deleteStatus) {
|
this.deleteStatus = deleteStatus;
|
}
|
|
public Byte getTaskUnitStatus() {
|
return taskUnitStatus;
|
}
|
|
public void setTaskUnitStatus(Byte taskUnitStatus) {
|
this.taskUnitStatus = taskUnitStatus;
|
}
|
|
public String getUnitName() {
|
return unitName;
|
}
|
|
public void setUnitName(String unitName) {
|
this.unitName = unitName;
|
}
|
|
public int getPointsLength() {
|
return pointsLength;
|
}
|
|
public void setPointsLength(int pointsLength) {
|
this.pointsLength = pointsLength;
|
}
|
|
public Long getEnterpriseId() {
|
return enterpriseId;
|
}
|
|
public void setEnterpriseId(Long enterpriseId) {
|
this.enterpriseId = enterpriseId;
|
}
|
|
public String getEnterpriseUuid() {
|
return enterpriseUuid;
|
}
|
|
public void setEnterpriseUuid(String enterpriseUuid) {
|
this.enterpriseUuid = enterpriseUuid;
|
}
|
|
public Date getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(Date gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public Date getGmtModitify() {
|
return gmtModitify;
|
}
|
|
public void setGmtModitify(Date gmtModitify) {
|
this.gmtModitify = gmtModitify;
|
}
|
|
public String getCreateUserName() {
|
return createUserName;
|
}
|
|
public void setCreateUserName(String createUserName) {
|
this.createUserName = createUserName;
|
}
|
|
public String getLastEditUserName() {
|
return lastEditUserName;
|
}
|
|
public void setLastEditUserName(String lastEditUserName) {
|
this.lastEditUserName = lastEditUserName;
|
}
|
|
public String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
}
|