chengf
2025-08-20 aab1ad64e309fa904cc9cbeba4d76b533a5b6c71
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
package com.java110.dto.report;
 
/**
 * 报表查询记录实体类(全String类型)
 * 对应数据库表:report_query_record
 */
public class ReportQueryRecord {
    /**
     * 主键ID
     */
    private String id;
    
    /**
     * 刷新时间
     */
    private String refreshTime;
    
    /**
     * 结束年份
     */
    private String endYear;
    
    /**
     * 操作小区ID
     */
    private String communityId;
    
    /**
     * 操作小区名称
     */
    private String communityName;
    
    /**
     * 报表内容串
     */
    private String reportContent;
    
    /**
     * 操作人
     */
    private String operator;
    
    /**
     * 操作人ID
     */
    private String operatorId;
    
    /**
     * 查询状态:1-成功,0-失败
     */
    private String queryStatus;
    
    /**
     * 记录创建时间
     */
    private String createTime;
    
    /**
     * 记录更新时间
     */
    private String updateTime;
 
    // 无参构造函数
    public ReportQueryRecord() {
    }
 
    // 全参构造函数
    public ReportQueryRecord(String id, String refreshTime, String endYear, String communityId, 
                           String communityName, String reportContent, String operator, String operatorId, 
                           String queryStatus, String createTime, String updateTime) {
        this.id = id;
        this.refreshTime = refreshTime;
        this.endYear = endYear;
        this.communityId = communityId;
        this.communityName = communityName;
        this.reportContent = reportContent;
        this.operator = operator;
        this.operatorId = operatorId;
        this.queryStatus = queryStatus;
        this.createTime = createTime;
        this.updateTime = updateTime;
    }
 
    // getter和setter方法
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getRefreshTime() {
        return refreshTime;
    }
 
    public void setRefreshTime(String refreshTime) {
        this.refreshTime = refreshTime;
    }
 
    public String getEndYear() {
        return endYear;
    }
 
    public void setEndYear(String endYear) {
        this.endYear = endYear;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getCommunityName() {
        return communityName;
    }
 
    public void setCommunityName(String communityName) {
        this.communityName = communityName;
    }
 
    public String getReportContent() {
        return reportContent;
    }
 
    public void setReportContent(String reportContent) {
        this.reportContent = reportContent;
    }
 
    public String getOperator() {
        return operator;
    }
 
    public void setOperator(String operator) {
        this.operator = operator;
    }
 
    public String getOperatorId() {
        return operatorId;
    }
 
    public void setOperatorId(String operatorId) {
        this.operatorId = operatorId;
    }
 
    public String getQueryStatus() {
        return queryStatus;
    }
 
    public void setQueryStatus(String queryStatus) {
        this.queryStatus = queryStatus;
    }
 
    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;
    }
 
    @Override
    public String toString() {
        return "ReportQueryRecord{" +
                "id='" + id + '\'' +
                ", refreshTime='" + refreshTime + '\'' +
                ", endYear='" + endYear + '\'' +
                ", communityId='" + communityId + '\'' +
                ", communityName='" + communityName + '\'' +
                ", reportContent='" + reportContent + '\'' +
                ", operator='" + operator + '\'' +
                ", operatorId='" + operatorId + '\'' +
                ", queryStatus='" + queryStatus + '\'' +
                ", createTime='" + createTime + '\'' +
                ", updateTime='" + updateTime + '\'' +
                '}';
    }
}