package com.java110.dto.msg;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 签报单主表实体
|
*/
|
public class ReportMainPo implements Serializable {
|
private Integer reportId; // 签报单唯一标识(自增主键)
|
private String communityId; // 关联小区表的community_id
|
private String flowNo; // 流转编号
|
private Integer reportYear; // 签报年份
|
private Integer reportMonth; // 签报月份
|
private Integer reportDay; // 签报日期
|
private String projectCode; // 项目编码
|
private String projectName; // 项目名称
|
private String projectContent; // 工程内容描述
|
private String managementDept; // 签报部门
|
private String fundType; // 基金类型
|
private String fundSubtype; // 基金二级分类
|
private String repairScope; // 维修范围
|
private String repairType; // 维修类型
|
private Byte status; // 签报状态
|
private String createUser; // 创建人
|
private Date createTime; // 创建时间
|
private Date updateTime; // 更新时间
|
|
// GETTER & SETTER
|
public Integer getReportId() {
|
return reportId;
|
}
|
|
public void setReportId(Integer reportId) {
|
this.reportId = reportId;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getFlowNo() {
|
return flowNo;
|
}
|
|
public void setFlowNo(String flowNo) {
|
this.flowNo = flowNo;
|
}
|
|
public Integer getReportYear() {
|
return reportYear;
|
}
|
|
public void setReportYear(Integer reportYear) {
|
this.reportYear = reportYear;
|
}
|
|
public Integer getReportMonth() {
|
return reportMonth;
|
}
|
|
public void setReportMonth(Integer reportMonth) {
|
this.reportMonth = reportMonth;
|
}
|
|
public Integer getReportDay() {
|
return reportDay;
|
}
|
|
public void setReportDay(Integer reportDay) {
|
this.reportDay = reportDay;
|
}
|
|
public String getProjectCode() {
|
return projectCode;
|
}
|
|
public void setProjectCode(String projectCode) {
|
this.projectCode = projectCode;
|
}
|
|
public String getProjectName() {
|
return projectName;
|
}
|
|
public void setProjectName(String projectName) {
|
this.projectName = projectName;
|
}
|
|
public String getProjectContent() {
|
return projectContent;
|
}
|
|
public void setProjectContent(String projectContent) {
|
this.projectContent = projectContent;
|
}
|
|
public String getManagementDept() {
|
return managementDept;
|
}
|
|
public void setManagementDept(String managementDept) {
|
this.managementDept = managementDept;
|
}
|
|
public String getFundType() {
|
return fundType;
|
}
|
|
public void setFundType(String fundType) {
|
this.fundType = fundType;
|
}
|
|
public String getFundSubtype() {
|
return fundSubtype;
|
}
|
|
public void setFundSubtype(String fundSubtype) {
|
this.fundSubtype = fundSubtype;
|
}
|
|
public String getRepairScope() {
|
return repairScope;
|
}
|
|
public void setRepairScope(String repairScope) {
|
this.repairScope = repairScope;
|
}
|
|
public String getRepairType() {
|
return repairType;
|
}
|
|
public void setRepairType(String repairType) {
|
this.repairType = repairType;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public String getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(String createUser) {
|
this.createUser = createUser;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|