chengf
2025-12-10 ee89a5cfa50980f1f2f2fa84bb69741b161670b5
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
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;
    }
}