package com.gkhy.safePlatform.specialWork.model.query.db;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
public class AllWorkApplyPageDBQuery implements Serializable {
|
|
private static final long serialVersionUID = 5228385705035546086L;
|
|
|
private Byte status;
|
|
private Byte workType;
|
|
private Byte workLevel;
|
|
private Long applyDepId;
|
|
private LocalDateTime applyStartTime;
|
|
private LocalDateTime applyEndTime;
|
|
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 Long getApplyDepId() {
|
return applyDepId;
|
}
|
|
public void setApplyDepId(Long applyDepId) {
|
this.applyDepId = applyDepId;
|
}
|
|
public LocalDateTime getApplyStartTime() {
|
return applyStartTime;
|
}
|
|
public void setApplyStartTime(LocalDateTime applyStartTime) {
|
this.applyStartTime = applyStartTime;
|
}
|
|
public LocalDateTime getApplyEndTime() {
|
return applyEndTime;
|
}
|
|
public void setApplyEndTime(LocalDateTime applyEndTime) {
|
this.applyEndTime = applyEndTime;
|
}
|
}
|