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.util.Date;
|
|
/**
|
* @author jingjy
|
* @date 2021-8-19 16:48:22
|
*/
|
@TableName("taskworker")
|
public class TaskWorker {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.AUTO)
|
/** 动火人 id **/
|
private Long id;
|
|
/** 作业证编号 taskcode **/
|
private String taskcode;
|
|
/** 施工单位 unit **/
|
private String unit;
|
|
/** 动火人姓名 worker **/
|
private String worker;
|
|
/** 特种作业工种 branch **/
|
private String branch;
|
|
/** 特种作业证件号 number **/
|
private String number;
|
|
/** 创建时间 createdat **/
|
private Date createdat;
|
|
/** 创建人 createdby **/
|
private String createdby;
|
|
/** 修改时间 modifiedat **/
|
private Date modifiedat;
|
|
/** 修改人 modifiedby **/
|
private String modifiedby;
|
|
/** 标记 flag **/
|
private Byte flag;
|
|
private String tasktype;
|
|
/** 动火人 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();
|
}
|
|
|
/** 施工单位 unti **/
|
public String getUnit() {
|
return unit;
|
}
|
|
/** 施工单位 unti **/
|
public void setUnit(String unit) {
|
this.unit = unit;
|
}
|
|
/** 动火人姓名 worker **/
|
public String getWorker() {
|
return worker;
|
}
|
|
/** 动火人姓名 worker **/
|
public void setWorker(String worker) {
|
this.worker = worker == null ? null : worker.trim();
|
}
|
|
/** 特种作业工种 branch **/
|
public String getBranch() {
|
return branch;
|
}
|
|
/** 特种作业工种 branch **/
|
public void setBranch(String branch) {
|
this.branch = branch == null ? null : branch.trim();
|
}
|
|
/** 特种作业证件号 number **/
|
public String getNumber() {
|
return number;
|
}
|
|
/** 特种作业证件号 number **/
|
public void setNumber(String number) {
|
this.number = number == null ? null : number.trim();
|
}
|
|
/** 创建时间 createdat **/
|
public Date getCreatedat() {
|
return createdat;
|
}
|
|
/** 创建时间 createdat **/
|
public void setCreatedat(Date createdat) {
|
this.createdat = createdat;
|
}
|
|
/** 创建人 createdby **/
|
public String getCreatedby() {
|
return createdby;
|
}
|
|
/** 创建人 createdby **/
|
public void setCreatedby(String createdby) {
|
this.createdby = createdby == null ? null : createdby.trim();
|
}
|
|
/** 修改时间 modifiedat **/
|
public Date getModifiedat() {
|
return modifiedat;
|
}
|
|
/** 修改时间 modifiedat **/
|
public void setModifiedat(Date modifiedat) {
|
this.modifiedat = modifiedat;
|
}
|
|
/** 修改人 modifiedby **/
|
public String getModifiedby() {
|
return modifiedby;
|
}
|
|
/** 修改人 modifiedby **/
|
public void setModifiedby(String modifiedby) {
|
this.modifiedby = modifiedby == null ? null : modifiedby.trim();
|
}
|
|
/** 标记 flag **/
|
public Byte getFlag() {
|
return flag;
|
}
|
|
/** 标记 flag **/
|
public void setFlag(Byte flag) {
|
this.flag = flag;
|
}
|
|
public String getTasktype() {
|
return tasktype;
|
}
|
|
public void setTasktype(String tasktype) {
|
this.tasktype = tasktype;
|
}
|
}
|