package com.gkhy.safePlatform.specialWork.model.dto.resp; import com.fasterxml.jackson.annotation.JsonFormat; import java.time.LocalDateTime; import java.util.Date; public class SpecialWorkAppointmentRespDTO { /** * 主键 */ private Long id; /** * 申请部门id */ private Long applyDepId; /** * 申请部门名称 */ private String applyDepName; /** * 预约时间 */ @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") 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; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") private LocalDateTime gmtCreate; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") 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 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; } }