java110
2023-05-15 9eeab03453821d89d9961da2cb13870150b24972
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
package com.java110.dto.report;
 
import java.io.Serializable;
 
public class QueryStatisticsDto implements Serializable {
 
    private String communityId;
    private String startDate;
 
    /**
     * 查询历史欠费
     */
    private String endDate;
 
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
 
    public String getStartDate() {
        return startDate;
    }
 
    public void setStartDate(String startDate) {
        this.startDate = startDate;
    }
 
    public String getEndDate() {
        return endDate;
    }
 
    public void setEndDate(String endDate) {
        this.endDate = endDate;
    }
}