jialh
昨天 dd6687b118561100e1677e88a9c2f5842a54c531
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
package com.java110.dto.meter;
 
import com.java110.dto.PageDto;
import lombok.Data;
 
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
 **/
@Data
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
    private String roadName;    // 道路名
    private String floorNum;    // 楼层
    private String doorNum;     // 门号
    private String roomNum;     // 房间号
 
    private String address; // 地址
    private String writeTime; // 写入时间
    private String writer; // 录入人
    private String checkApplyCompanyName; // 核查申请公司名称
    private String checkApplyDeptProject; // 核查申请部门/项目
    private String waterFeePayer; // 水费缴纳方
    private String accountNumber; // 账号
    private String meterReadBookNo; // 抄表本号
    private String waterConsumption; // 用水量
    private String sewageTreatmentWater; // 污水处理量
    private String collectionStandard; // 征收标准
    private String arrearsUnpaid; // 欠费未缴
    private String latePaymentFine; // 滞纳金
    private String latePaymentSurcharge; // 逾期违约金
    private String feePaymentStatus; // 缴费状态
    private String carryOverBalance; // 结转余额
    private String totalPayableAmount; // 应付总金额
 
}