package com.gkhy.safePlatform.doublePrevention.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.gkhy.safePlatform.doublePrevention.entity.dto.req.PreventDangerCheckTaskUnitQueryReqDTO;
|
|
import java.util.Date;
|
import java.io.Serializable;
|
|
/**
|
* (PreventDangerCheckTaskUnit)实体类
|
*
|
* @author makejava
|
* @since 2022-06-25 10:40:13
|
*/
|
@TableName("prevent_danger_check_task_unit")
|
public class PreventDangerCheckTaskUnit implements Serializable {
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
private String uuid;
|
/**
|
* 创建时间
|
*/
|
private Date gmtCreate;
|
/**
|
* 最后修改时间
|
*/
|
private Date gmtModitify;
|
/**
|
* 企业id
|
*/
|
private Long enterpriseId;
|
/**
|
* 企业uuid
|
*/
|
private String enterpriseUuid;
|
/**
|
* 任务单元名称
|
*/
|
private String taskUnitName;
|
/**
|
* 创建人
|
*/
|
private String createByUserName;
|
/**
|
* 修改人
|
*/
|
private String lastEditUserName;
|
/**
|
* 删除标志:0-有效,1-删除
|
*/
|
private Byte deleteStatus;
|
/**
|
* 备注或描述信息
|
*/
|
private String note;
|
|
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 Date getGmtModitify() {
|
return gmtModitify;
|
}
|
|
public void setGmtModitify(Date gmtModitify) {
|
this.gmtModitify = gmtModitify;
|
}
|
|
|
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 String getTaskUnitName() {
|
return taskUnitName;
|
}
|
|
public void setTaskUnitName(String taskUnitName) {
|
this.taskUnitName = taskUnitName;
|
}
|
|
public String getCreateByUserName() {
|
return createByUserName;
|
}
|
|
public void setCreateByUserName(String createByUserName) {
|
this.createByUserName = createByUserName;
|
}
|
|
public Date getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(Date gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public String getLastEditUserName() {
|
return lastEditUserName;
|
}
|
|
public void setLastEditUserName(String lastEditUserName) {
|
this.lastEditUserName = lastEditUserName;
|
}
|
|
public Byte getDeleteStatus() {
|
return deleteStatus;
|
}
|
|
public void setDeleteStatus(Byte deleteStatus) {
|
this.deleteStatus = deleteStatus;
|
}
|
|
public String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
|
}
|