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
package com.java110.dto.importData;
 
/**
 * 业主催缴信息 DTO(所有字段均为 String 类型)
 * 对应数据库表:owner_collection
 */
public class OwnerCollectionDto {
 
    private String collectionId;
    private String ownerId;
    private String roomId;
    private String collectionStartDate;
    private String collectionEndDate;
    private String amount;
    private String firstCollector;
    private String secondCollectorName;
    private String secondCollectorPhone;
    private String secondCollectorAddress;
    private String receiptNumber;
    private String receiptPhotoUrl;
    private String remark;
    private String createTime;
    private String updateTime;
 
    private Integer page;
    private Integer row;
 
    public Integer getPage() {
        return page;
    }
 
    public void setPage(Integer page) {
        this.page = page;
    }
 
    public Integer getRow() {
        return row;
    }
 
    public void setRow(Integer row) {
        this.row = row;
    }
 
    // 无参构造函数
    public OwnerCollectionDto() {}
 
    // 全参构造函数(可选,根据业务需求调整)
    public OwnerCollectionDto(String collectionId, String ownerId, String collectionStartDate,
                              String collectionEndDate, String amount, String firstCollector,
                              String secondCollectorName, String secondCollectorPhone,
                              String secondCollectorAddress, String receiptNumber,
                              String receiptPhotoUrl, String remark, String createTime,
                              String updateTime) {
        this.collectionId = collectionId;
        this.ownerId = ownerId;
        this.collectionStartDate = collectionStartDate;
        this.collectionEndDate = collectionEndDate;
        this.amount = amount;
        this.firstCollector = firstCollector;
        this.secondCollectorName = secondCollectorName;
        this.secondCollectorPhone = secondCollectorPhone;
        this.secondCollectorAddress = secondCollectorAddress;
        this.receiptNumber = receiptNumber;
        this.receiptPhotoUrl = receiptPhotoUrl;
        this.remark = remark;
        this.createTime = createTime;
        this.updateTime = updateTime;
    }
 
    // 所有字段的 getter/setter 方法
    public String getCollectionId() {
        return collectionId;
    }
 
    public void setCollectionId(String collectionId) {
        this.collectionId = collectionId;
    }
 
    public String getOwnerId() {
        return ownerId;
    }
 
    public void setOwnerId(String ownerId) {
        this.ownerId = ownerId;
    }
 
    public String getRoomId() {
        return roomId;
    }
 
    public void setRoomId(String roomId) {
        this.roomId = roomId;
    }
 
    public String getCollectionStartDate() {
        return collectionStartDate;
    }
 
    public void setCollectionStartDate(String collectionStartDate) {
        this.collectionStartDate = collectionStartDate;
    }
 
    public String getCollectionEndDate() {
        return collectionEndDate;
    }
 
    public void setCollectionEndDate(String collectionEndDate) {
        this.collectionEndDate = collectionEndDate;
    }
 
    public String getAmount() {
        return amount;
    }
 
    public void setAmount(String amount) {
        this.amount = amount;
    }
 
    public String getFirstCollector() {
        return firstCollector;
    }
 
    public void setFirstCollector(String firstCollector) {
        this.firstCollector = firstCollector;
    }
 
    public String getSecondCollectorName() {
        return secondCollectorName;
    }
 
    public void setSecondCollectorName(String secondCollectorName) {
        this.secondCollectorName = secondCollectorName;
    }
 
    public String getSecondCollectorPhone() {
        return secondCollectorPhone;
    }
 
    public void setSecondCollectorPhone(String secondCollectorPhone) {
        this.secondCollectorPhone = secondCollectorPhone;
    }
 
    public String getSecondCollectorAddress() {
        return secondCollectorAddress;
    }
 
    public void setSecondCollectorAddress(String secondCollectorAddress) {
        this.secondCollectorAddress = secondCollectorAddress;
    }
 
    public String getReceiptNumber() {
        return receiptNumber;
    }
 
    public void setReceiptNumber(String receiptNumber) {
        this.receiptNumber = receiptNumber;
    }
 
    public String getReceiptPhotoUrl() {
        return receiptPhotoUrl;
    }
 
    public void setReceiptPhotoUrl(String receiptPhotoUrl) {
        this.receiptPhotoUrl = receiptPhotoUrl;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
 
    public String getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(String updateTime) {
        this.updateTime = updateTime;
    }
 
    // toString 方法(方便日志打印)
    @Override
    public String toString() {
        return "OwnerCollectionDto{" +
                "collectionId='" + collectionId + '\'' +
                ", ownerId='" + ownerId + '\'' +
                ", collectionStartDate='" + collectionStartDate + '\'' +
                ", collectionEndDate='" + collectionEndDate + '\'' +
                ", amount='" + amount + '\'' +
                ", firstCollector='" + firstCollector + '\'' +
                ", secondCollectorName='" + secondCollectorName + '\'' +
                ", secondCollectorPhone='" + secondCollectorPhone + '\'' +
                ", secondCollectorAddress='" + secondCollectorAddress + '\'' +
                ", receiptNumber='" + receiptNumber + '\'' +
                ", receiptPhotoUrl='" + receiptPhotoUrl + '\'' +
                ", remark='" + remark + '\'' +
                ", createTime='" + createTime + '\'' +
                ", updateTime='" + updateTime + '\'' +
                '}';
    }
}