| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- package com.java110.dto.fee;
- import com.java110.dto.PageDto;
- import java.io.Serializable;
- /**
- * @ClassName BillOweFeeDto
- * @Description TODO
- * @Author wuxw
- * @Date 2020/5/28 17:42
- * @Version 1.0
- * add by wuxw 2020/5/28
- **/
- public class BillOweFeeDto extends PageDto implements Serializable {
- public static final String STATE_FINISH_FEE = "2000";//已缴费
- public static final String STATE_WILL_FEE = "1000";//未缴费
- private String oweId;
- private String billId;
- private String feeId;
- private String billAmountOwed;
- private String amountOwed;
- private String feeEndTime;
- private String ownerId;
- private String ownerName;
- private String ownerTel;
- private String payerObjName;
- private String payerObjType;
- private String communityId;
- private String state;
- private String createTime;
- private String[] ownerIds;
- private String deadlineTime;
- private String payObjId;
- public String getOweId() {
- return oweId;
- }
- public void setOweId(String oweId) {
- this.oweId = oweId;
- }
- public String getBillId() {
- return billId;
- }
- public void setBillId(String billId) {
- this.billId = billId;
- }
- public String getFeeId() {
- return feeId;
- }
- public void setFeeId(String feeId) {
- this.feeId = feeId;
- }
- public String getBillAmountOwed() {
- return billAmountOwed;
- }
- public void setBillAmountOwed(String billAmountOwed) {
- this.billAmountOwed = billAmountOwed;
- }
- public String getAmountOwed() {
- return amountOwed;
- }
- public void setAmountOwed(String amountOwed) {
- this.amountOwed = amountOwed;
- }
- public String getFeeEndTime() {
- return feeEndTime;
- }
- public void setFeeEndTime(String feeEndTime) {
- this.feeEndTime = feeEndTime;
- }
- public String getOwnerId() {
- return ownerId;
- }
- public void setOwnerId(String ownerId) {
- this.ownerId = ownerId;
- }
- public String getOwnerName() {
- return ownerName;
- }
- public void setOwnerName(String ownerName) {
- this.ownerName = ownerName;
- }
- public String getOwnerTel() {
- return ownerTel;
- }
- public void setOwnerTel(String ownerTel) {
- this.ownerTel = ownerTel;
- }
- public String getPayerObjName() {
- return payerObjName;
- }
- public void setPayerObjName(String payerObjName) {
- this.payerObjName = payerObjName;
- }
- public String getPayerObjType() {
- return payerObjType;
- }
- public void setPayerObjType(String payerObjType) {
- this.payerObjType = payerObjType;
- }
- public String getCommunityId() {
- return communityId;
- }
- public void setCommunityId(String communityId) {
- this.communityId = communityId;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getCreateTime() {
- return createTime;
- }
- public void setCreateTime(String createTime) {
- this.createTime = createTime;
- }
- public String[] getOwnerIds() {
- return ownerIds;
- }
- public void setOwnerIds(String[] ownerIds) {
- this.ownerIds = ownerIds;
- }
- public String getDeadlineTime() {
- return deadlineTime;
- }
- public void setDeadlineTime(String deadlineTime) {
- this.deadlineTime = deadlineTime;
- }
- public String getPayObjId() {
- return payObjId;
- }
- public void setPayObjId(String payObjId) {
- this.payObjId = payObjId;
- }
- }
|