郑永安
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
package com.gk.hotwork.specialWork.model.dto.req;
 
 
import java.io.Serializable;
 
public class WorkApplyBrokenCircuitReqDTO extends WorkApplyEight implements Serializable {
 
    private static final long serialVersionUID = 326403288977682944L;
    //作业单位
    private Long operationDepId;
    //断路原因
    private String bcReason;
    //断路地段图片路径
    private String bcPath;
    //断路地段说明
    private String bcExplain;
    //涉及相关部门
    private String involvedDepIds;
 
    public Long getOperationDepId() {
        return operationDepId;
    }
 
    public void setOperationDepId(Long operationDepId) {
        this.operationDepId = operationDepId;
    }
 
    public String getBcReason() {
        return bcReason;
    }
 
    public void setBcReason(String bcReason) {
        this.bcReason = bcReason;
    }
 
    public String getBcPath() {
        return bcPath;
    }
 
    public void setBcPath(String bcPath) {
        this.bcPath = bcPath;
    }
 
    public String getBcExplain() {
        return bcExplain;
    }
 
    public void setBcExplain(String bcExplain) {
        this.bcExplain = bcExplain;
    }
 
    public String getInvolvedDepIds() {
        return involvedDepIds;
    }
 
    public void setInvolvedDepIds(String involvedDepIds) {
        this.involvedDepIds = involvedDepIds;
    }
}