package com.gkhy.safePlatform.safeCheck.model.dto.req;
|
|
import java.io.Serializable;
|
|
public class ListTaskDataByConditionReqDTO implements Serializable {
|
|
private Integer pageIndex;
|
|
private Integer pageSize;
|
|
//执行部门
|
private Long excDepId;
|
|
//执行班组
|
private Long execClassgroupId;
|
|
//任务状态
|
private Byte taskStatus;
|
|
public Integer getPageIndex() {
|
return pageIndex;
|
}
|
|
public void setPageIndex(Integer pageIndex) {
|
this.pageIndex = pageIndex;
|
}
|
|
public Integer getPageSize() {
|
return pageSize;
|
}
|
|
public void setPageSize(Integer pageSize) {
|
this.pageSize = pageSize;
|
}
|
|
public Long getExcDepId() {
|
return excDepId;
|
}
|
|
public void setExcDepId(Long excDepId) {
|
this.excDepId = excDepId;
|
}
|
|
public Long getExecClassgroupId() {
|
return execClassgroupId;
|
}
|
|
public void setExecClassgroupId(Long execClassgroupId) {
|
this.execClassgroupId = execClassgroupId;
|
}
|
|
public Byte getTaskStatus() {
|
return taskStatus;
|
}
|
|
public void setTaskStatus(Byte taskStatus) {
|
this.taskStatus = taskStatus;
|
}
|
}
|