java110
2023-05-12 7b90160465723602365521fa85e233680b60dd5e
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
package com.java110.dto.report;
 
import java.io.Serializable;
 
public class QueryStatisticsDto implements Serializable {
 
    private String communityId;
    private String queryDate;
 
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getQueryDate() {
        return queryDate;
    }
 
    public void setQueryDate(String queryDate) {
        this.queryDate = queryDate;
    }
}