package com.gkhy.safePlatform.specialWork.model.query.db;
|
|
import java.time.LocalDateTime;
|
import java.util.List;
|
|
public class WorkCountDbQuery {
|
|
private List<Long> depIdList;
|
|
// private List<Byte> statusList;
|
|
private Byte type;
|
|
private LocalDateTime startTime;
|
|
private LocalDateTime endTime;
|
|
public List<Long> getDepIdList() {
|
return depIdList;
|
}
|
|
public void setDepIdList(List<Long> depIdList) {
|
this.depIdList = depIdList;
|
}
|
|
public Byte getType() {
|
return type;
|
}
|
|
public void setType(Byte type) {
|
this.type = type;
|
}
|
|
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;
|
}
|
}
|