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.time.LocalDateTime; /** * 动火作业信息 */ @TableName("work_hot") public class WorkHotInfo implements Serializable { private static final long serialVersionUID = 2007659579659777392L; //主键 @TableId(type = IdType.AUTO) private Long id; //动火方式 private String hotMethod; //申请作业id private Long workApplyId; //涉及其他作业 private String otherSpecialWork; //状态 private byte status; private LocalDateTime gmtCreate; private Long createUid; private String createUname; private LocalDateTime gmtModified; private Long modifiedUid; private String modifiedUname; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getHotMethod() { return hotMethod; } public void setHotMethod(String hotMethod) { this.hotMethod = hotMethod; } public Long getWorkApplyId() { return workApplyId; } public void setWorkApplyId(Long workApplyId) { this.workApplyId = workApplyId; } 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; } public byte getStatus() { return status; } public void setStatus(byte status) { this.status = status; } public String getOtherSpecialWork() { return otherSpecialWork; } public void setOtherSpecialWork(String otherSpecialWork) { this.otherSpecialWork = otherSpecialWork; } }