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.time.LocalDateTime; import java.io.Serializable; import java.util.Date; /** * (SpecialWorkAppointment)实体类 * * @author makejava * @since 2022-09-09 10:33:49 */ @TableName("special_work_appointment") public class SpecialWorkAppointmentInfo implements Serializable { private static final long serialVersionUID = -35915688899927875L; /** * 主键 */ @TableId(type = IdType.AUTO) private Long id; /** * 申请部门id */ private Long applyDepId; /** * 申请部门名称 */ private String applyDepName; /** * 预约时间 */ private Date appointmentTime; /** * 状态 */ private Byte status; /** * 动火作业 */ private Integer hotWork; /** * 动土作业 */ private Integer groundBreakingOper; /** * 盲板作业 */ private Integer blindPlatePluggingOper; /** * 临时用电作业 */ private Integer temporaryPowerOper; /** * 高处作业 */ private Integer workAtHeight; /** * 断路作业 */ private Integer openCircuitOper; /** * 吊装作业 */ private Integer liftingOper; /** * 受限空间作业 */ private Integer confinedSpaceOper; private Long createUid; private LocalDateTime gmtCreate; private LocalDateTime gmtModified; private String createUname; private String modifiedUname; private Long modifiedUid; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getApplyDepId() { return applyDepId; } public void setApplyDepId(Long applyDepId) { this.applyDepId = applyDepId; } public String getApplyDepName() { return applyDepName; } public void setApplyDepName(String applyDepName) { this.applyDepName = applyDepName; } public Byte getStatus() { return status; } public void setStatus(Byte status) { this.status = status; } public Integer getHotWork() { return hotWork; } public void setHotWork(Integer hotWork) { this.hotWork = hotWork; } public Integer getGroundBreakingOper() { return groundBreakingOper; } public void setGroundBreakingOper(Integer groundBreakingOper) { this.groundBreakingOper = groundBreakingOper; } public Integer getBlindPlatePluggingOper() { return blindPlatePluggingOper; } public void setBlindPlatePluggingOper(Integer blindPlatePluggingOper) { this.blindPlatePluggingOper = blindPlatePluggingOper; } public Integer getTemporaryPowerOper() { return temporaryPowerOper; } public void setTemporaryPowerOper(Integer temporaryPowerOper) { this.temporaryPowerOper = temporaryPowerOper; } public Integer getWorkAtHeight() { return workAtHeight; } public void setWorkAtHeight(Integer workAtHeight) { this.workAtHeight = workAtHeight; } public Integer getOpenCircuitOper() { return openCircuitOper; } public void setOpenCircuitOper(Integer openCircuitOper) { this.openCircuitOper = openCircuitOper; } public Integer getLiftingOper() { return liftingOper; } public void setLiftingOper(Integer liftingOper) { this.liftingOper = liftingOper; } public Integer getConfinedSpaceOper() { return confinedSpaceOper; } public void setConfinedSpaceOper(Integer confinedSpaceOper) { this.confinedSpaceOper = confinedSpaceOper; } 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 String getModifiedUname() { return modifiedUname; } public void setModifiedUname(String modifiedUname) { this.modifiedUname = modifiedUname; } public Long getModifiedUid() { return modifiedUid; } public void setModifiedUid(Long modifiedUid) { this.modifiedUid = modifiedUid; } public Date getAppointmentTime() { return appointmentTime; } public void setAppointmentTime(Date appointmentTime) { this.appointmentTime = appointmentTime; } public LocalDateTime getGmtCreate() { return gmtCreate; } public void setGmtCreate(LocalDateTime gmtCreate) { this.gmtCreate = gmtCreate; } public LocalDateTime getGmtModified() { return gmtModified; } public void setGmtModified(LocalDateTime gmtModified) { this.gmtModified = gmtModified; } }