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 + '\'' +
|
'}';
|
}
|
}
|
|