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;
|
}
|
}
|