郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.gk.hotwork.doublePrevention.entity.dto.req;
 
public class PreventDangerCheckTaskQueryReqDTO {
 
    private Integer  pageIndex;
 
    private Integer  pageSize;
    /**
     * 排查结果:1-正常,2-存在隐患,3-未排查;4-其他
     */
    private Byte result;
    /**
     * 排查任务状态:1-待排查,2-排查中,3-已完成,4-超时未排查
     */
    private Byte taskStatus;
    /**
     * 任务类型:1-手动添加,2-自动调度
     */
    private Byte taskType;
    /**
     * 部门id
     */
    private Long execDepId;
 
    public Long getExecDepId() {
        return execDepId;
    }
 
    public void setExecDepId(Long execDepId) {
        this.execDepId = execDepId;
    }
 
    public Byte getTaskType() {
        return taskType;
    }
 
    public void setTaskType(Byte taskType) {
        this.taskType = taskType;
    }
 
    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 Byte getResult() {
        return result;
    }
 
    public void setResult(Byte result) {
        this.result = result;
    }
 
    public Byte getTaskStatus() {
        return taskStatus;
    }
 
    public void setTaskStatus(Byte taskStatus) {
        this.taskStatus = taskStatus;
    }
}