songhuangfeng123
2022-09-16 357935fb2785dc79f4f47ffa7e1c503bc8cea376
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package com.gkhy.safePlatform.equipment.model.dto.resp;
 
import java.sql.Timestamp;
import java.io.Serializable;
 
public class EquipmentRepairDetailDto implements Serializable {
 
    private Long id;
    //具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施  3:重点监管装置/设备
    private Integer infoTpe;
    //设备ID/外键
    private Long equipmentId;
    //维修负责人/外键
    private Long repairPersonId;
    //维修开始日期
    private Timestamp repairStartDate;
    //维修结束日期
    private Timestamp repairEndDate;
    //维修负责人单位/外键
    private Long repairPersonDepartmentId;
    //维修情况
    private String repairMemo;
    //维修状态  1:维修中 2:已修好
    private Byte repairStatus;
    //设施异常项
    private String exceptionInfo;
    //创建日期
    private Timestamp createTime;
    //更新日期
    private Timestamp updateTime;
 
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
    //具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施  3:重点监管装置/设备
    public Integer getInfoTpe() {
        return infoTpe;
    }
 
    public void setInfoTpe(Integer infoTpe) {
        this.infoTpe = infoTpe;
    }
    //设备ID/外键
    public Long getEquipmentId() {
        return equipmentId;
    }
 
    public void setEquipmentId(Long equipmentId) {
        this.equipmentId = equipmentId;
    }
    //维修负责人/外键
    public Long getRepairPersonId() {
        return repairPersonId;
    }
 
    public void setRepairPersonId(Long repairPersonId) {
        this.repairPersonId = repairPersonId;
    }
    //维修开始日期
    public Timestamp getRepairStartDate() {
        return repairStartDate;
    }
 
    public void setRepairStartDate(Timestamp repairStartDate) {
        this.repairStartDate = repairStartDate;
    }
    //维修结束日期
    public Timestamp getRepairEndDate() {
        return repairEndDate;
    }
 
    public void setRepairEndDate(Timestamp repairEndDate) {
        this.repairEndDate = repairEndDate;
    }
    //维修负责人单位/外键
    public Long getRepairPersonDepartmentId() {
        return repairPersonDepartmentId;
    }
 
    public void setRepairPersonDepartmentId(Long repairPersonDepartmentId) {
        this.repairPersonDepartmentId = repairPersonDepartmentId;
    }
    //维修情况
    public String getRepairMemo() {
        return repairMemo;
    }
 
    public void setRepairMemo(String repairMemo) {
        this.repairMemo = repairMemo;
    }
    //维修状态  1:维修中 2:已修好
    public Byte getRepairStatus() {
        return repairStatus;
    }
 
    public void setRepairStatus(Byte repairStatus) {
        this.repairStatus = repairStatus;
    }
    //设施异常项
    public String getExceptionInfo() {
        return exceptionInfo;
    }
 
    public void setExceptionInfo(String exceptionInfo) {
        this.exceptionInfo = exceptionInfo;
    }
    //创建日期
    public Timestamp getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Timestamp createTime) {
        this.createTime = createTime;
    }
    //更新日期
    public Timestamp getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Timestamp updateTime) {
        this.updateTime = updateTime;
    }
}