chengf
2025-12-11 f29e6f31e4f2d533124fc68346b7cc072f427c9b
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
package com.java110.dto.msg;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 签报审批记录表实体
 */
public class ReportApprovalRecordPo implements Serializable {
    private Integer approvalId; // 审批记录唯一标识
    private Integer reportId; // 关联签报单主表的report_id
    private Byte managementSeal; // 管理处是否盖章
    private Date managementSealTime; // 管理处盖章时间
    private String managementSealUser; // 管理处盖章人
    private Byte committeeSeal; // 业委会是否盖章
    private Date committeeSealTime; // 业委会盖章时间
    private String committeeSealUser; // 业委会盖章人
    private String approvalRemark; // 审批备注
    private String publishStatus; // 公共收益金公布情况
    private Date publishStartDate; // 拟公布起始日期
    private Date publishEndDate; // 拟公布结束日期
    private Date createTime; // 创建时间
    private Date updateTime; // 更新时间
 
    // GETTER & SETTER
    public Integer getApprovalId() {
        return approvalId;
    }
 
    public void setApprovalId(Integer approvalId) {
        this.approvalId = approvalId;
    }
 
    public Integer getReportId() {
        return reportId;
    }
 
    public void setReportId(Integer reportId) {
        this.reportId = reportId;
    }
 
    public Byte getManagementSeal() {
        return managementSeal;
    }
 
    public void setManagementSeal(Byte managementSeal) {
        this.managementSeal = managementSeal;
    }
 
    public Date getManagementSealTime() {
        return managementSealTime;
    }
 
    public void setManagementSealTime(Date managementSealTime) {
        this.managementSealTime = managementSealTime;
    }
 
    public String getManagementSealUser() {
        return managementSealUser;
    }
 
    public void setManagementSealUser(String managementSealUser) {
        this.managementSealUser = managementSealUser;
    }
 
    public Byte getCommitteeSeal() {
        return committeeSeal;
    }
 
    public void setCommitteeSeal(Byte committeeSeal) {
        this.committeeSeal = committeeSeal;
    }
 
    public Date getCommitteeSealTime() {
        return committeeSealTime;
    }
 
    public void setCommitteeSealTime(Date committeeSealTime) {
        this.committeeSealTime = committeeSealTime;
    }
 
    public String getCommitteeSealUser() {
        return committeeSealUser;
    }
 
    public void setCommitteeSealUser(String committeeSealUser) {
        this.committeeSealUser = committeeSealUser;
    }
 
    public String getApprovalRemark() {
        return approvalRemark;
    }
 
    public void setApprovalRemark(String approvalRemark) {
        this.approvalRemark = approvalRemark;
    }
 
    public String getPublishStatus() {
        return publishStatus;
    }
 
    public void setPublishStatus(String publishStatus) {
        this.publishStatus = publishStatus;
    }
 
    public Date getPublishStartDate() {
        return publishStartDate;
    }
 
    public void setPublishStartDate(Date publishStartDate) {
        this.publishStartDate = publishStartDate;
    }
 
    public Date getPublishEndDate() {
        return publishEndDate;
    }
 
    public void setPublishEndDate(Date publishEndDate) {
        this.publishEndDate = publishEndDate;
    }
 
    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;
    }
}