package com.java110.dto.msg;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 银行收入表实体
|
*/
|
public class BankIncomePo implements Serializable {
|
private Integer incomeId; // 收入记录唯一标识
|
private String communityId; // 关联小区表的community_id
|
private Date dailyReportDate; // 日报登记日期
|
private Date bankRecordDate; // 网银记账日期
|
private String payerName; // 付款方公司名称
|
private String incomeDesc; // 银行收入描述
|
private BigDecimal incomeAmount; // 收入金额
|
private BigDecimal detailAmount; // 收入明细金额
|
private String incomeType; // 收入类别
|
private String bankName; // 银行名称
|
private String bankAccount; // 银行账号
|
private String companyName; // 所属公司
|
private String operator; // 经办人
|
private String flowNo; // 流转号
|
private String resolutionNo; // 决议号
|
private String tripleFormNo; // 三联单号
|
private String businessType; // 大类明细
|
private Date handoverDate; // 交账日期
|
private String handoverUser; // 交账人
|
private String remark; // 备注
|
private Date createTime; // 创建时间
|
private Date updateTime; // 更新时间
|
|
// GETTER & SETTER
|
public Integer getIncomeId() {
|
return incomeId;
|
}
|
|
public void setIncomeId(Integer incomeId) {
|
this.incomeId = incomeId;
|
}
|
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public Date getDailyReportDate() {
|
return dailyReportDate;
|
}
|
|
public void setDailyReportDate(Date dailyReportDate) {
|
this.dailyReportDate = dailyReportDate;
|
}
|
|
public Date getBankRecordDate() {
|
return bankRecordDate;
|
}
|
|
public void setBankRecordDate(Date bankRecordDate) {
|
this.bankRecordDate = bankRecordDate;
|
}
|
|
public String getPayerName() {
|
return payerName;
|
}
|
|
public void setPayerName(String payerName) {
|
this.payerName = payerName;
|
}
|
|
public String getIncomeDesc() {
|
return incomeDesc;
|
}
|
|
public void setIncomeDesc(String incomeDesc) {
|
this.incomeDesc = incomeDesc;
|
}
|
|
public BigDecimal getIncomeAmount() {
|
return incomeAmount;
|
}
|
|
public void setIncomeAmount(BigDecimal incomeAmount) {
|
this.incomeAmount = incomeAmount;
|
}
|
|
public BigDecimal getDetailAmount() {
|
return detailAmount;
|
}
|
|
public void setDetailAmount(BigDecimal detailAmount) {
|
this.detailAmount = detailAmount;
|
}
|
|
public String getIncomeType() {
|
return incomeType;
|
}
|
|
public void setIncomeType(String incomeType) {
|
this.incomeType = incomeType;
|
}
|
|
public String getBankName() {
|
return bankName;
|
}
|
|
public void setBankName(String bankName) {
|
this.bankName = bankName;
|
}
|
|
public String getBankAccount() {
|
return bankAccount;
|
}
|
|
public void setBankAccount(String bankAccount) {
|
this.bankAccount = bankAccount;
|
}
|
|
public String getCompanyName() {
|
return companyName;
|
}
|
|
public void setCompanyName(String companyName) {
|
this.companyName = companyName;
|
}
|
|
public String getOperator() {
|
return operator;
|
}
|
|
public void setOperator(String operator) {
|
this.operator = operator;
|
}
|
|
public String getFlowNo() {
|
return flowNo;
|
}
|
|
public void setFlowNo(String flowNo) {
|
this.flowNo = flowNo;
|
}
|
|
public String getResolutionNo() {
|
return resolutionNo;
|
}
|
|
public void setResolutionNo(String resolutionNo) {
|
this.resolutionNo = resolutionNo;
|
}
|
|
public String getTripleFormNo() {
|
return tripleFormNo;
|
}
|
|
public void setTripleFormNo(String tripleFormNo) {
|
this.tripleFormNo = tripleFormNo;
|
}
|
|
public String getBusinessType() {
|
return businessType;
|
}
|
|
public void setBusinessType(String businessType) {
|
this.businessType = businessType;
|
}
|
|
public Date getHandoverDate() {
|
return handoverDate;
|
}
|
|
public void setHandoverDate(Date handoverDate) {
|
this.handoverDate = handoverDate;
|
}
|
|
public String getHandoverUser() {
|
return handoverUser;
|
}
|
|
public void setHandoverUser(String handoverUser) {
|
this.handoverUser = handoverUser;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
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;
|
}
|
}
|