package com.gkhy.safePlatform.specialWork.model.query.db;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
public class WorkPageDBQuery implements Serializable {
|
|
private static final long serialVersionUID = 6706884427846117487L;
|
|
private String workPermitNo;
|
|
private LocalDateTime startTime;
|
|
private LocalDateTime endTime;
|
|
private Byte workStatus;
|
|
private Byte acceptStatus;
|
|
private Byte workAnalysisStatus;
|
|
private Long depId;
|
|
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 Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
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;
|
}
|
}
|