package com.gkhy.safePlatform.specialWork.model.query.db; import java.time.LocalDateTime; public class WorkListDbQuery { //所属企业ID private Long eid; //所属部门ID private Long depId; //申请人ID private Long applyUid; //作业状态 private Byte status; //作业类型 private Byte workType; //作业等级 private Byte workLevel; //查询条件 - 申请时间开始 private LocalDateTime applyTimeStart; //查询条件 - 申请时间结束 private LocalDateTime applyTimeEnd; //查询条件 - 预期作业进行时间开始 private LocalDateTime expTimeStart; //查询条件 - 预期作业进行时间结束 private LocalDateTime expTimeEnd; public Long getEid() { return eid; } public void setEid(Long eid) { this.eid = eid; } public Long getDepId() { return depId; } public void setDepId(Long depId) { this.depId = depId; } public Long getApplyUid() { return applyUid; } public void setApplyUid(Long applyUid) { this.applyUid = applyUid; } public Byte getStatus() { return status; } public void setStatus(Byte status) { this.status = status; } public Byte getWorkType() { return workType; } public void setWorkType(Byte workType) { this.workType = workType; } public Byte getWorkLevel() { return workLevel; } public void setWorkLevel(Byte workLevel) { this.workLevel = workLevel; } public LocalDateTime getApplyTimeStart() { return applyTimeStart; } public void setApplyTimeStart(LocalDateTime applyTimeStart) { this.applyTimeStart = applyTimeStart; } public LocalDateTime getApplyTimeEnd() { return applyTimeEnd; } public void setApplyTimeEnd(LocalDateTime applyTimeEnd) { this.applyTimeEnd = applyTimeEnd; } public LocalDateTime getExpTimeStart() { return expTimeStart; } public void setExpTimeStart(LocalDateTime expTimeStart) { this.expTimeStart = expTimeStart; } public LocalDateTime getExpTimeEnd() { return expTimeEnd; } public void setExpTimeEnd(LocalDateTime expTimeEnd) { this.expTimeEnd = expTimeEnd; } }