java110
2020-09-29 074297ccf3c132231075e505238ae68b64153e44
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
package com.java110.dto.feeManualCollection;
 
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 FeeManualCollectionDto extends PageDto implements Serializable {
    //状态 1010 托收中 2020 托收结束,3030 托收失败
    public static final String STATE_COLLECTION = "1010";
    public static final String STATE_FINISH = "2020";
    public static final String STATE_FAIL = "3030";
    private String squarePrice;
    private String ownerName;
    private String link;
    private String roomArea;
    private String remark;
    private String state;
    private String stateName;
    private String ownerId;
    private String communityId;
    private String collectionId;
    private String roomId;
    private String roomName;
 
 
    private Date createTime;
 
    private String statusCd = "0";
 
    private String totalFee;
 
 
    public String getSquarePrice() {
        return squarePrice;
    }
 
    public void setSquarePrice(String squarePrice) {
        this.squarePrice = squarePrice;
    }
 
    public String getOwnerName() {
        return ownerName;
    }
 
    public void setOwnerName(String ownerName) {
        this.ownerName = ownerName;
    }
 
    public String getLink() {
        return link;
    }
 
    public void setLink(String link) {
        this.link = link;
    }
 
    public String getRoomArea() {
        return roomArea;
    }
 
    public void setRoomArea(String roomArea) {
        this.roomArea = roomArea;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getOwnerId() {
        return ownerId;
    }
 
    public void setOwnerId(String ownerId) {
        this.ownerId = ownerId;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getCollectionId() {
        return collectionId;
    }
 
    public void setCollectionId(String collectionId) {
        this.collectionId = collectionId;
    }
 
    public String getRoomId() {
        return roomId;
    }
 
    public void setRoomId(String roomId) {
        this.roomId = roomId;
    }
 
    public String getRoomName() {
        return roomName;
    }
 
    public void setRoomName(String roomName) {
        this.roomName = roomName;
    }
 
 
    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 getStateName() {
        return stateName;
    }
 
    public void setStateName(String stateName) {
        this.stateName = stateName;
    }
 
    public String getTotalFee() {
        return totalFee;
    }
 
    public void setTotalFee(String totalFee) {
        this.totalFee = totalFee;
    }
}