郑永安
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
105
106
107
108
109
package com.gkhy.safePlatform.specialWork.model.dto.resp.others;
 
import java.io.Serializable;
import java.util.List;
 
public class OthersWorkApprovedApplyDetailRespDTO implements Serializable {
 
    private static final long serialVersionUID = -2916670744741822555L;
 
    private Long workApplyId;
 
    private String workPermitNo;
 
    private String workLocation;
 
    private String workContent;
 
    private String hazardIdentification;
 
    private Byte materialStatus;
 
    private String materialStatusDesc;
 
    private List<OthersWorkApprovalDeviceRespDTO> devices;
 
    private List<OthersWorkApprovedApplyOperatorRespDTO> operators;
 
    private List<OthersWorkApprovalStepRespDTO> approvalSteps;
 
    public Long getWorkApplyId() {
        return workApplyId;
    }
 
    public void setWorkApplyId(Long workApplyId) {
        this.workApplyId = workApplyId;
    }
 
    public List<OthersWorkApprovalStepRespDTO> getApprovalSteps() {
        return approvalSteps;
    }
 
    public void setApprovalSteps(List<OthersWorkApprovalStepRespDTO> approvalSteps) {
        this.approvalSteps = approvalSteps;
    }
 
    public String getWorkPermitNo() {
        return workPermitNo;
    }
 
    public void setWorkPermitNo(String workPermitNo) {
        this.workPermitNo = workPermitNo;
    }
 
    public List<OthersWorkApprovedApplyOperatorRespDTO> getOperators() {
        return operators;
    }
 
    public void setOperators(List<OthersWorkApprovedApplyOperatorRespDTO> operators) {
        this.operators = operators;
    }
 
    public String getWorkLocation() {
        return workLocation;
    }
 
    public void setWorkLocation(String workLocation) {
        this.workLocation = workLocation;
    }
 
    public String getWorkContent() {
        return workContent;
    }
 
    public void setWorkContent(String workContent) {
        this.workContent = workContent;
    }
 
    public String getHazardIdentification() {
        return hazardIdentification;
    }
 
    public void setHazardIdentification(String hazardIdentification) {
        this.hazardIdentification = hazardIdentification;
    }
 
    public Byte getMaterialStatus() {
        return materialStatus;
    }
 
    public void setMaterialStatus(Byte materialStatus) {
        this.materialStatus = materialStatus;
    }
 
    public String getMaterialStatusDesc() {
        return materialStatusDesc;
    }
 
    public void setMaterialStatusDesc(String materialStatusDesc) {
        this.materialStatusDesc = materialStatusDesc;
    }
 
    public List<OthersWorkApprovalDeviceRespDTO> getDevices() {
        return devices;
    }
 
    public void setDevices(List<OthersWorkApprovalDeviceRespDTO> devices) {
        this.devices = devices;
    }
}