郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package com.gkhy.safePlatform.specialWork.model.dto.resp;
 
public class WorkStatisticsRespDTO {
    private Long applyDepId;
    private String applyDepName;
    private Integer heightCount;
    private Integer hotCount;
    private Integer groundBreakingCount;
    private Integer blindPlatePluggingCount;
    private Integer temporaryPowerCount;
    private Integer openCircuitCout;
    private Integer liftingCount;
    private Integer confinedSpaceCount;
 
    private Integer totalCount;
 
    public Long getApplyDepId() {
        return applyDepId;
    }
 
    public void setApplyDepId(Long applyDepId) {
        this.applyDepId = applyDepId;
    }
 
    public String getApplyDepName() {
        return applyDepName;
    }
 
    public void setApplyDepName(String applyDepName) {
        this.applyDepName = applyDepName;
    }
 
    public Integer getHeightCount() {
        return heightCount;
    }
 
    public void setHeightCount(Integer heightCount) {
        this.heightCount = heightCount;
    }
 
    public Integer getHotCount() {
        return hotCount;
    }
 
    public void setHotCount(Integer hotCount) {
        this.hotCount = hotCount;
    }
 
    public Integer getGroundBreakingCount() {
        return groundBreakingCount;
    }
 
    public void setGroundBreakingCount(Integer groundBreakingCount) {
        this.groundBreakingCount = groundBreakingCount;
    }
 
    public Integer getBlindPlatePluggingCount() {
        return blindPlatePluggingCount;
    }
 
    public void setBlindPlatePluggingCount(Integer blindPlatePluggingCount) {
        this.blindPlatePluggingCount = blindPlatePluggingCount;
    }
 
    public Integer getTemporaryPowerCount() {
        return temporaryPowerCount;
    }
 
    public void setTemporaryPowerCount(Integer temporaryPowerCount) {
        this.temporaryPowerCount = temporaryPowerCount;
    }
 
    public Integer getOpenCircuitCout() {
        return openCircuitCout;
    }
 
    public void setOpenCircuitCout(Integer openCircuitCout) {
        this.openCircuitCout = openCircuitCout;
    }
 
    public Integer getLiftingCount() {
        return liftingCount;
    }
 
    public void setLiftingCount(Integer liftingCount) {
        this.liftingCount = liftingCount;
    }
 
    public Integer getConfinedSpaceCount() {
        return confinedSpaceCount;
    }
 
    public void setConfinedSpaceCount(Integer confinedSpaceCount) {
        this.confinedSpaceCount = confinedSpaceCount;
    }
 
    public Integer getTotalCount() {
        return totalCount;
    }
 
    public void setTotalCount(Integer totalCount) {
        this.totalCount = totalCount;
    }
}