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