chengf
2026-01-27 b6184e2ddf3db37a94f7efb3b619bbc64642a292
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
package com.java110.dto.meter;
 
import com.java110.dto.PageDto;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @ClassName FloorDto
 * @Description 水电费数据层封装
 * @Author wuxw
 * @Date 2019/4/24 8:52
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
public class MeterWaterDto extends PageDto implements Serializable {
 
    public static final String METER_TYPE_ROOM = "1010";
    public static final String OBJ_TYPE_ROOM = "3333";
    public static final String PAYER_OBJ_TYPE_ROOM = "3333"; //房屋
 
    private String remark;
    private String curReadingTime;
    private String waterId;
    private String curDegrees;
    private String meterType;
    private String meterTypeName;
    private String preDegrees;
    private String objId;
    private String objName;
    private String preReadingTime;
    private String communityId;
    private String objType;
    private String feeId;
    private double price;
 
    private String batchId;
 
    private Date createTime;
 
    private String statusCd = "0";
 
    // 新增字段
    private String powerSupplyBureau; // 供电局
    private String householdName; // 户名
    private String householdNumber; // 户号
    private String electricMeterId; // 电能表编号
    private String handler; // 经办人
    private String isTransferred; // 是否过户(是/否)
    private String companyNameAfterTransfer; // 过户后公司名称
    private String transferDate; // 过户日期
    private String correspondingHouseholdCount; // 对应户数
    private String lastPaymentDate; // 最后缴款日期
    private String readingType; // 示数类型
    private String multiplyingFactor; // 倍率
    private String unitPrice; // 单价
    private String invoiceAmount; // 开票金额
    private String amountDifference; // 比较金额差额
    private String autoDeduction; // 自动扣款
    private String remark2; // 备注2
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getCurReadingTime() {
        return curReadingTime;
    }
 
    public void setCurReadingTime(String curReadingTime) {
        this.curReadingTime = curReadingTime;
    }
 
    public String getWaterId() {
        return waterId;
    }
 
    public void setWaterId(String waterId) {
        this.waterId = waterId;
    }
 
    public String getCurDegrees() {
        return curDegrees;
    }
 
    public void setCurDegrees(String curDegrees) {
        this.curDegrees = curDegrees;
    }
 
    public String getMeterType() {
        return meterType;
    }
 
    public void setMeterType(String meterType) {
        this.meterType = meterType;
    }
 
    public String getPreDegrees() {
        return preDegrees;
    }
 
    public void setPreDegrees(String preDegrees) {
        this.preDegrees = preDegrees;
    }
 
    public String getObjId() {
        return objId;
    }
 
    public void setObjId(String objId) {
        this.objId = objId;
    }
 
    public String getPreReadingTime() {
        return preReadingTime;
    }
 
    public void setPreReadingTime(String preReadingTime) {
        this.preReadingTime = preReadingTime;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getObjType() {
        return objType;
    }
 
    public void setObjType(String objType) {
        this.objType = objType;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getStatusCd() {
        return statusCd;
    }
 
    public void setStatusCd(String statusCd) {
        this.statusCd = statusCd;
    }
 
    public String getFeeId() {
        return feeId;
    }
 
    public void setFeeId(String feeId) {
        this.feeId = feeId;
    }
 
    public String getObjName() {
        return objName;
    }
 
    public void setObjName(String objName) {
        this.objName = objName;
    }
 
    public double getPrice() {
        return price;
    }
 
    public void setPrice(double price) {
        this.price = price;
    }
 
    public String getMeterTypeName() {
        return meterTypeName;
    }
 
    public void setMeterTypeName(String meterTypeName) {
        this.meterTypeName = meterTypeName;
    }
 
    public String getBatchId() {
        return batchId;
    }
 
    public void setBatchId(String batchId) {
        this.batchId = batchId;
    }
 
    // 新增字段的getter/setter方法
    public String getPowerSupplyBureau() {
        return powerSupplyBureau;
    }
 
    public void setPowerSupplyBureau(String powerSupplyBureau) {
        this.powerSupplyBureau = powerSupplyBureau;
    }
 
    public String getHouseholdName() {
        return householdName;
    }
 
    public void setHouseholdName(String householdName) {
        this.householdName = householdName;
    }
 
    public String getHouseholdNumber() {
        return householdNumber;
    }
 
    public void setHouseholdNumber(String householdNumber) {
        this.householdNumber = householdNumber;
    }
 
    public String getElectricMeterId() {
        return electricMeterId;
    }
 
    public void setElectricMeterId(String electricMeterId) {
        this.electricMeterId = electricMeterId;
    }
 
    public String getHandler() {
        return handler;
    }
 
    public void setHandler(String handler) {
        this.handler = handler;
    }
 
    public String getIsTransferred() {
        return isTransferred;
    }
 
    public void setIsTransferred(String isTransferred) {
        this.isTransferred = isTransferred;
    }
 
    public String getCompanyNameAfterTransfer() {
        return companyNameAfterTransfer;
    }
 
    public void setCompanyNameAfterTransfer(String companyNameAfterTransfer) {
        this.companyNameAfterTransfer = companyNameAfterTransfer;
    }
 
    public String getTransferDate() {
        return transferDate;
    }
 
    public void setTransferDate(String transferDate) {
        this.transferDate = transferDate;
    }
 
    public String getCorrespondingHouseholdCount() {
        return correspondingHouseholdCount;
    }
 
    public void setCorrespondingHouseholdCount(String correspondingHouseholdCount) {
        this.correspondingHouseholdCount = correspondingHouseholdCount;
    }
 
    public String getLastPaymentDate() {
        return lastPaymentDate;
    }
 
    public void setLastPaymentDate(String lastPaymentDate) {
        this.lastPaymentDate = lastPaymentDate;
    }
 
    public String getReadingType() {
        return readingType;
    }
 
    public void setReadingType(String readingType) {
        this.readingType = readingType;
    }
 
    public String getMultiplyingFactor() {
        return multiplyingFactor;
    }
 
    public void setMultiplyingFactor(String multiplyingFactor) {
        this.multiplyingFactor = multiplyingFactor;
    }
 
    public String getUnitPrice() {
        return unitPrice;
    }
 
    public void setUnitPrice(String unitPrice) {
        this.unitPrice = unitPrice;
    }
 
    public String getInvoiceAmount() {
        return invoiceAmount;
    }
 
    public void setInvoiceAmount(String invoiceAmount) {
        this.invoiceAmount = invoiceAmount;
    }
 
    public String getAmountDifference() {
        return amountDifference;
    }
 
    public void setAmountDifference(String amountDifference) {
        this.amountDifference = amountDifference;
    }
 
    public String getAutoDeduction() {
        return autoDeduction;
    }
 
    public void setAutoDeduction(String autoDeduction) {
        this.autoDeduction = autoDeduction;
    }
 
    public String getRemark2() {
        return remark2;
    }
 
    public void setRemark2(String remark2) {
        this.remark2 = remark2;
    }
}