package com.gkhy.safePlatform.specialWork.model.query; import com.fasterxml.jackson.annotation.JsonFormat; import java.io.Serializable; import java.time.LocalDateTime; public class WorkPageQuery implements Serializable { private static final long serialVersionUID = 4775817974584921876L; private String workPermitNo; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") private LocalDateTime startTime; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") private LocalDateTime endTime; private Byte workStatus; private Byte acceptStatus; private Byte workAnalysisStatus; private Byte workType; private Byte workLevel; // 作业部门 private Long workDepId; public String getWorkPermitNo() { return workPermitNo; } public void setWorkPermitNo(String workPermitNo) { this.workPermitNo = workPermitNo; } public LocalDateTime getStartTime() { return startTime; } public void setStartTime(LocalDateTime startTime) { this.startTime = startTime; } public LocalDateTime getEndTime() { return endTime; } public void setEndTime(LocalDateTime endTime) { this.endTime = endTime; } public Byte getWorkStatus() { return workStatus; } public void setWorkStatus(Byte workStatus) { this.workStatus = workStatus; } public Byte getAcceptStatus() { return acceptStatus; } public void setAcceptStatus(Byte acceptStatus) { this.acceptStatus = acceptStatus; } public Byte getWorkAnalysisStatus() { return workAnalysisStatus; } public void setWorkAnalysisStatus(Byte workAnalysisStatus) { this.workAnalysisStatus = workAnalysisStatus; } public Byte getWorkType() { return workType; } public void setWorkType(Byte workType) { this.workType = workType; } public Long getWorkDepId() { return workDepId; } public void setWorkDepId(Long workDepId) { this.workDepId = workDepId; } public Byte getWorkLevel() { return workLevel; } public void setWorkLevel(Byte workLevel) { this.workLevel = workLevel; } }