package com.java110.po.meter;
|
|
import java.io.Serializable;
|
|
/**
|
* 话费流水表实体类
|
* 对应数据库表:phone_bill_flow
|
* @author 开发者
|
* @date 2026-01-21
|
*/
|
public class PhoneBillFlow implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
private String configId;
|
|
private String feeTypeCd;
|
|
public String getConfigId() {
|
return configId;
|
}
|
|
public void setConfigId(String configId) {
|
this.configId = configId;
|
}
|
|
public String getFeeTypeCd() {
|
return feeTypeCd;
|
}
|
|
public void setFeeTypeCd(String feeTypeCd) {
|
this.feeTypeCd = feeTypeCd;
|
}
|
|
/**
|
* 主键ID
|
*/
|
private String id;
|
|
/**
|
* 小区ID
|
*/
|
private String communityId;
|
|
private String communityCode;
|
|
private String communityName;
|
|
private String userId;
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
public String getCommunityCode() {
|
return communityCode;
|
}
|
|
public void setCommunityCode(String communityCode) {
|
this.communityCode = communityCode;
|
}
|
|
public String getCommunityName() {
|
return communityName;
|
}
|
|
public void setCommunityName(String communityName) {
|
this.communityName = communityName;
|
}
|
|
/**
|
* 房间ID
|
*/
|
private String roomId;
|
|
/**
|
* 分账序号
|
*/
|
private String profitShareSerial;
|
|
/**
|
* 设备号
|
*/
|
private String deviceNumber;
|
|
/**
|
* 收款方
|
*/
|
private String payee;
|
|
/**
|
* 户名
|
*/
|
private String accountName;
|
|
/**
|
* 经办人
|
*/
|
private String handler;
|
|
/**
|
* 是否过户(是/否)
|
*/
|
private String isTransfer;
|
|
/**
|
* 过户后公司名称
|
*/
|
private String transferredCompany;
|
|
/**
|
* 过户日期
|
*/
|
private String transferDate;
|
|
/**
|
* 地址
|
*/
|
private String address;
|
|
/**
|
* 年
|
*/
|
private String year;
|
|
/**
|
* 月
|
*/
|
private String month;
|
|
/**
|
* 账单所属周期
|
*/
|
private String billCycle;
|
|
/**
|
* 最后缴款日期
|
*/
|
private String lastPaymentDate;
|
|
/**
|
* 套餐及固定费
|
*/
|
private String packageFixedFee;
|
|
/**
|
* 套餐外语音通信费
|
*/
|
private String extraVoiceFee;
|
|
/**
|
* 综合信息服务费
|
*/
|
private String comprehensiveInfoFee;
|
|
/**
|
* 其他费用
|
*/
|
private String otherFee;
|
|
/**
|
* 应付账单金额
|
*/
|
private String payableAmount;
|
|
/**
|
* 备注1
|
*/
|
private String remark1;
|
|
/**
|
* 已开票金额
|
*/
|
private String invoicedAmount;
|
|
/**
|
* 未开票金额
|
*/
|
private String uninvoicedAmount;
|
|
/**
|
* 滞纳金
|
*/
|
private String lateFee;
|
|
/**
|
* 小计
|
*/
|
private String subtotal;
|
|
/**
|
* 所属单位
|
*/
|
private String affiliatedUnit;
|
|
/**
|
* 支付日期
|
*/
|
private String paymentDate;
|
|
/**
|
* 备注2
|
*/
|
private String remark2;
|
|
/**
|
* 数据录入人
|
*/
|
private String dataEntryPerson;
|
|
/**
|
* 数据录入日期
|
*/
|
private String dataEntryDate;
|
|
/**
|
* 财务审核人
|
*/
|
private String financialAuditor;
|
|
/**
|
* 财务审核日期
|
*/
|
private String financialAuditDate;
|
|
private Integer page;
|
private Integer row;
|
|
private String roadName;
|
private String floorNum;
|
private String unitNum;
|
private String roomNum;
|
|
private String feeId;
|
|
public Integer getPage() {
|
return page;
|
}
|
|
public void setPage(Integer page) {
|
this.page = page;
|
}
|
|
public Integer getRow() {
|
return row;
|
}
|
|
public void setRow(Integer row) {
|
this.row = row;
|
}
|
|
// 无参构造方法
|
public PhoneBillFlow() {
|
}
|
|
// 全参构造方法(可选,根据业务需求使用)
|
public PhoneBillFlow(String id, String communityId, String roomId, String profitShareSerial,
|
String deviceNumber, String payee, String accountName, String handler,
|
String isTransfer, String transferredCompany, String transferDate, String address,
|
String year, String month, String billCycle, String lastPaymentDate,
|
String packageFixedFee, String extraVoiceFee, String comprehensiveInfoFee,
|
String otherFee, String payableAmount, String remark1, String invoicedAmount,
|
String uninvoicedAmount, String lateFee, String subtotal, String affiliatedUnit,
|
String paymentDate, String remark2, String dataEntryPerson, String dataEntryDate,
|
String financialAuditor, String financialAuditDate) {
|
this.id = id;
|
this.communityId = communityId;
|
this.roomId = roomId;
|
this.profitShareSerial = profitShareSerial;
|
this.deviceNumber = deviceNumber;
|
this.payee = payee;
|
this.accountName = accountName;
|
this.handler = handler;
|
this.isTransfer = isTransfer;
|
this.transferredCompany = transferredCompany;
|
this.transferDate = transferDate;
|
this.address = address;
|
this.year = year;
|
this.month = month;
|
this.billCycle = billCycle;
|
this.lastPaymentDate = lastPaymentDate;
|
this.packageFixedFee = packageFixedFee;
|
this.extraVoiceFee = extraVoiceFee;
|
this.comprehensiveInfoFee = comprehensiveInfoFee;
|
this.otherFee = otherFee;
|
this.payableAmount = payableAmount;
|
this.remark1 = remark1;
|
this.invoicedAmount = invoicedAmount;
|
this.uninvoicedAmount = uninvoicedAmount;
|
this.lateFee = lateFee;
|
this.subtotal = subtotal;
|
this.affiliatedUnit = affiliatedUnit;
|
this.paymentDate = paymentDate;
|
this.remark2 = remark2;
|
this.dataEntryPerson = dataEntryPerson;
|
this.dataEntryDate = dataEntryDate;
|
this.financialAuditor = financialAuditor;
|
this.financialAuditDate = financialAuditDate;
|
}
|
|
// 所有字段的getter和setter方法
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getRoomId() {
|
return roomId;
|
}
|
|
public void setRoomId(String roomId) {
|
this.roomId = roomId;
|
}
|
|
public String getProfitShareSerial() {
|
return profitShareSerial;
|
}
|
|
public void setProfitShareSerial(String profitShareSerial) {
|
this.profitShareSerial = profitShareSerial;
|
}
|
|
public String getDeviceNumber() {
|
return deviceNumber;
|
}
|
|
public void setDeviceNumber(String deviceNumber) {
|
this.deviceNumber = deviceNumber;
|
}
|
|
public String getPayee() {
|
return payee;
|
}
|
|
public void setPayee(String payee) {
|
this.payee = payee;
|
}
|
|
public String getAccountName() {
|
return accountName;
|
}
|
|
public void setAccountName(String accountName) {
|
this.accountName = accountName;
|
}
|
|
public String getHandler() {
|
return handler;
|
}
|
|
public void setHandler(String handler) {
|
this.handler = handler;
|
}
|
|
public String getIsTransfer() {
|
return isTransfer;
|
}
|
|
public void setIsTransfer(String isTransfer) {
|
this.isTransfer = isTransfer;
|
}
|
|
public String getTransferredCompany() {
|
return transferredCompany;
|
}
|
|
public void setTransferredCompany(String transferredCompany) {
|
this.transferredCompany = transferredCompany;
|
}
|
|
public String getTransferDate() {
|
return transferDate;
|
}
|
|
public void setTransferDate(String transferDate) {
|
this.transferDate = transferDate;
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public String getYear() {
|
return year;
|
}
|
|
public void setYear(String year) {
|
this.year = year;
|
}
|
|
public String getMonth() {
|
return month;
|
}
|
|
public void setMonth(String month) {
|
this.month = month;
|
}
|
|
public String getBillCycle() {
|
return billCycle;
|
}
|
|
public void setBillCycle(String billCycle) {
|
this.billCycle = billCycle;
|
}
|
|
public String getLastPaymentDate() {
|
return lastPaymentDate;
|
}
|
|
public void setLastPaymentDate(String lastPaymentDate) {
|
this.lastPaymentDate = lastPaymentDate;
|
}
|
|
public String getPackageFixedFee() {
|
return packageFixedFee;
|
}
|
|
public void setPackageFixedFee(String packageFixedFee) {
|
this.packageFixedFee = packageFixedFee;
|
}
|
|
public String getExtraVoiceFee() {
|
return extraVoiceFee;
|
}
|
|
public void setExtraVoiceFee(String extraVoiceFee) {
|
this.extraVoiceFee = extraVoiceFee;
|
}
|
|
public String getComprehensiveInfoFee() {
|
return comprehensiveInfoFee;
|
}
|
|
public void setComprehensiveInfoFee(String comprehensiveInfoFee) {
|
this.comprehensiveInfoFee = comprehensiveInfoFee;
|
}
|
|
public String getOtherFee() {
|
return otherFee;
|
}
|
|
public void setOtherFee(String otherFee) {
|
this.otherFee = otherFee;
|
}
|
|
public String getPayableAmount() {
|
return payableAmount;
|
}
|
|
public void setPayableAmount(String payableAmount) {
|
this.payableAmount = payableAmount;
|
}
|
|
public String getRemark1() {
|
return remark1;
|
}
|
|
public void setRemark1(String remark1) {
|
this.remark1 = remark1;
|
}
|
|
public String getInvoicedAmount() {
|
return invoicedAmount;
|
}
|
|
public void setInvoicedAmount(String invoicedAmount) {
|
this.invoicedAmount = invoicedAmount;
|
}
|
|
public String getUninvoicedAmount() {
|
return uninvoicedAmount;
|
}
|
|
public void setUninvoicedAmount(String uninvoicedAmount) {
|
this.uninvoicedAmount = uninvoicedAmount;
|
}
|
|
public String getLateFee() {
|
return lateFee;
|
}
|
|
public void setLateFee(String lateFee) {
|
this.lateFee = lateFee;
|
}
|
|
public String getSubtotal() {
|
return subtotal;
|
}
|
|
public void setSubtotal(String subtotal) {
|
this.subtotal = subtotal;
|
}
|
|
public String getAffiliatedUnit() {
|
return affiliatedUnit;
|
}
|
|
public void setAffiliatedUnit(String affiliatedUnit) {
|
this.affiliatedUnit = affiliatedUnit;
|
}
|
|
public String getPaymentDate() {
|
return paymentDate;
|
}
|
|
public void setPaymentDate(String paymentDate) {
|
this.paymentDate = paymentDate;
|
}
|
|
public String getRemark2() {
|
return remark2;
|
}
|
|
public void setRemark2(String remark2) {
|
this.remark2 = remark2;
|
}
|
|
public String getDataEntryPerson() {
|
return dataEntryPerson;
|
}
|
|
public void setDataEntryPerson(String dataEntryPerson) {
|
this.dataEntryPerson = dataEntryPerson;
|
}
|
|
public String getDataEntryDate() {
|
return dataEntryDate;
|
}
|
|
public void setDataEntryDate(String dataEntryDate) {
|
this.dataEntryDate = dataEntryDate;
|
}
|
|
public String getFinancialAuditor() {
|
return financialAuditor;
|
}
|
|
public void setFinancialAuditor(String financialAuditor) {
|
this.financialAuditor = financialAuditor;
|
}
|
|
public String getFinancialAuditDate() {
|
return financialAuditDate;
|
}
|
|
public void setFinancialAuditDate(String financialAuditDate) {
|
this.financialAuditDate = financialAuditDate;
|
}
|
|
// toString方法,方便日志打印和调试
|
@Override
|
public String toString() {
|
return "PhoneBillFlow{" +
|
"id='" + id + '\'' +
|
", communityId='" + communityId + '\'' +
|
", roomId='" + roomId + '\'' +
|
", profitShareSerial='" + profitShareSerial + '\'' +
|
", deviceNumber='" + deviceNumber + '\'' +
|
", payee='" + payee + '\'' +
|
", accountName='" + accountName + '\'' +
|
", handler='" + handler + '\'' +
|
", isTransfer='" + isTransfer + '\'' +
|
", transferredCompany='" + transferredCompany + '\'' +
|
", transferDate='" + transferDate + '\'' +
|
", address='" + address + '\'' +
|
", year='" + year + '\'' +
|
", month='" + month + '\'' +
|
", billCycle='" + billCycle + '\'' +
|
", lastPaymentDate='" + lastPaymentDate + '\'' +
|
", packageFixedFee='" + packageFixedFee + '\'' +
|
", extraVoiceFee='" + extraVoiceFee + '\'' +
|
", comprehensiveInfoFee='" + comprehensiveInfoFee + '\'' +
|
", otherFee='" + otherFee + '\'' +
|
", payableAmount='" + payableAmount + '\'' +
|
", remark1='" + remark1 + '\'' +
|
", invoicedAmount='" + invoicedAmount + '\'' +
|
", uninvoicedAmount='" + uninvoicedAmount + '\'' +
|
", lateFee='" + lateFee + '\'' +
|
", subtotal='" + subtotal + '\'' +
|
", affiliatedUnit='" + affiliatedUnit + '\'' +
|
", paymentDate='" + paymentDate + '\'' +
|
", remark2='" + remark2 + '\'' +
|
", dataEntryPerson='" + dataEntryPerson + '\'' +
|
", dataEntryDate='" + dataEntryDate + '\'' +
|
", financialAuditor='" + financialAuditor + '\'' +
|
", financialAuditDate='" + financialAuditDate + '\'' +
|
'}';
|
}
|
|
public String getRoadName() {
|
return roadName;
|
}
|
|
public void setRoadName(String roadName) {
|
this.roadName = roadName;
|
}
|
|
public String getFloorNum() {
|
return floorNum;
|
}
|
|
public void setFloorNum(String floorNum) {
|
this.floorNum = floorNum;
|
}
|
|
public String getUnitNum() {
|
return unitNum;
|
}
|
|
public void setUnitNum(String unitNum) {
|
this.unitNum = unitNum;
|
}
|
|
public String getRoomNum() {
|
return roomNum;
|
}
|
|
public void setRoomNum(String roomNum) {
|
this.roomNum = roomNum;
|
}
|
|
public String getFeeId() {
|
return feeId;
|
}
|
|
public void setFeeId(String feeId) {
|
this.feeId = feeId;
|
}
|
}
|