| | |
| | | /** |
| | | * 房屋费用导入对象 |
| | | */ |
| | | public class ImportRoomFee { |
| | | public class ImportRoomFee implements Cloneable { |
| | | |
| | | private String importFileName; |
| | | |
| | | private String payerObjName; |
| | | |
| | |
| | | |
| | | private String contractId; |
| | | |
| | | private String state; |
| | | private String cycle; |
| | | private String remark; |
| | | private String ownerId; |
| | |
| | | private String doorRoomNum; |
| | | |
| | | private String openInv; |
| | | private String isContractFee; |
| | | |
| | | private String payObjId; |
| | | |
| | | private String invoiceNo; |
| | | |
| | | private String frequency; |
| | | |
| | | public String getImportFileName() { |
| | | return importFileName; |
| | | } |
| | | |
| | | public void setImportFileName(String importFileName) { |
| | | this.importFileName = importFileName; |
| | | } |
| | | |
| | | public String getFrequency() { |
| | | return frequency; |
| | | } |
| | | |
| | | public void setFrequency(String frequency) { |
| | | this.frequency = frequency; |
| | | } |
| | | |
| | | public String getInvoiceNo() { |
| | | return invoiceNo; |
| | | } |
| | | |
| | | public void setInvoiceNo(String invoiceNo) { |
| | | this.invoiceNo = invoiceNo; |
| | | } |
| | | |
| | | public String getPayObjId() { |
| | | return payObjId; |
| | | } |
| | | |
| | | public void setPayObjId(String payObjId) { |
| | | this.payObjId = payObjId; |
| | | } |
| | | |
| | | public String getOpenInv() { |
| | | return openInv; |
| | |
| | | public void setDoorRoomNum(String doorRoomNum) { |
| | | this.doorRoomNum = doorRoomNum; |
| | | } |
| | | |
| | | public String getIsContractFee() { |
| | | return isContractFee; |
| | | } |
| | | |
| | | public void setIsContractFee(String isContractFee) { |
| | | this.isContractFee = isContractFee; |
| | | } |
| | | |
| | | |
| | | public String getState() { |
| | | return state; |
| | | } |
| | | |
| | | public void setState(String state) { |
| | | this.state = state; |
| | | } |
| | | |
| | | @Override |
| | | public Object clone() throws CloneNotSupportedException { |
| | | return super.clone(); // 浅克隆,如果有引用类型字段可能需要深克隆 |
| | | } |
| | | } |