riku
2022-06-17 fd8c31dc5a0c0372d867335283f0b5272d667236
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package cn.flightfeather.supervision.domain.entity;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "ea_t_hazardous_waste_record")
public class HWRecord {
    @Id
    @Column(name = "HR_GUID")
    private String hrGuid;
 
    /**
     * 企业id
     */
    @Column(name = "CI_GUID")
    private String ciGuid;
 
    /**
     * 危废种类
     */
    @Column(name = "HR_Type")
    private String hrType;
 
    /**
     * 危废代码
     */
    @Column(name = "HR_Type_Code")
    private String hrTypeCode;
 
    /**
     * 实际处置量(吨)
     */
    @Column(name = "HR_Amount")
    private Double hrAmount;
 
    /**
     * 记录时间(年)
     */
    @Column(name = "HR_Time")
    private Date hrTime;
 
    /**
     * 处置单位
     */
    @Column(name = "HR_Dispose_Unit")
    private String hrDisposeUnit;
 
    /**
     * @return HR_GUID
     */
    public String getHrGuid() {
        return hrGuid;
    }
 
    /**
     * @param hrGuid
     */
    public void setHrGuid(String hrGuid) {
        this.hrGuid = hrGuid == null ? null : hrGuid.trim();
    }
 
    /**
     * 获取企业id
     *
     * @return CI_GUID - 企业id
     */
    public String getCiGuid() {
        return ciGuid;
    }
 
    /**
     * 设置企业id
     *
     * @param ciGuid 企业id
     */
    public void setCiGuid(String ciGuid) {
        this.ciGuid = ciGuid == null ? null : ciGuid.trim();
    }
 
    /**
     * 获取危废种类
     *
     * @return HR_Type - 危废种类
     */
    public String getHrType() {
        return hrType;
    }
 
    /**
     * 设置危废种类
     *
     * @param hrType 危废种类
     */
    public void setHrType(String hrType) {
        this.hrType = hrType == null ? null : hrType.trim();
    }
 
    /**
     * 获取危废代码
     *
     * @return HR_Type_Code - 危废代码
     */
    public String getHrTypeCode() {
        return hrTypeCode;
    }
 
    /**
     * 设置危废代码
     *
     * @param hrTypeCode 危废代码
     */
    public void setHrTypeCode(String hrTypeCode) {
        this.hrTypeCode = hrTypeCode == null ? null : hrTypeCode.trim();
    }
 
    /**
     * 获取实际处置量(吨)
     *
     * @return HR_Amount - 实际处置量(吨)
     */
    public Double getHrAmount() {
        return hrAmount;
    }
 
    /**
     * 设置实际处置量(吨)
     *
     * @param hrAmount 实际处置量(吨)
     */
    public void setHrAmount(Double hrAmount) {
        this.hrAmount = hrAmount;
    }
 
    /**
     * 获取记录时间(年)
     *
     * @return HR_Time - 记录时间(年)
     */
    public Date getHrTime() {
        return hrTime;
    }
 
    /**
     * 设置记录时间(年)
     *
     * @param hrTime 记录时间(年)
     */
    public void setHrTime(Date hrTime) {
        this.hrTime = hrTime;
    }
 
    /**
     * 获取处置单位
     *
     * @return HR_Dispose_Unit - 处置单位
     */
    public String getHrDisposeUnit() {
        return hrDisposeUnit;
    }
 
    /**
     * 设置处置单位
     *
     * @param hrDisposeUnit 处置单位
     */
    public void setHrDisposeUnit(String hrDisposeUnit) {
        this.hrDisposeUnit = hrDisposeUnit == null ? null : hrDisposeUnit.trim();
    }
}