16639036659
2023-09-19 c07615f4a30c29621979b9a0f6022ada684af6cc
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
73
74
75
package com.gk.hotwork.doublePrevention.entity.dto.req;
 
public class PreventRiskControlMeasureListQueryReqDTO {
 
    private Integer  pageIndex;
 
    private Integer  pageSize;
    /**
     * 管控方式:1-自动化监控,2-隐患排查
     */
    private Byte controlType;
    /**
     * 风险管控措施编号
     */
    private String controlMeasureCode;
    /**
     * 管控措施分类1
     * 1-工程技术,2-维护保养,3-操作行为,4-应急设施
     */
    private Byte classify1;
    /**
     * 管控措施分类2
     * 自定义
     */
    private Byte classify2;
 
 
    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 getControlType() {
        return controlType;
    }
 
    public void setControlType(Byte controlType) {
        this.controlType = controlType;
    }
 
    public String getControlMeasureCode() {
        return controlMeasureCode;
    }
 
    public void setControlMeasureCode(String controlMeasureCode) {
        this.controlMeasureCode = controlMeasureCode;
    }
 
    public Byte getClassify1() {
        return classify1;
    }
 
    public void setClassify1(Byte classify1) {
        this.classify1 = classify1;
    }
 
    public Byte getClassify2() {
        return classify2;
    }
 
    public void setClassify2(Byte classify2) {
        this.classify2 = classify2;
    }
}