| | |
| | | package com.java110.dto.returnPayFee; |
| | | |
| | | import com.java110.dto.PageDto; |
| | | import com.java110.dto.feeAccountDetail.FeeAccountDetailDto; |
| | | import com.java110.dto.payFeeDetailDiscount.PayFeeDetailDiscountDto; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @ClassName FloorDto |
| | |
| | | private String state; |
| | | private String communityId; |
| | | |
| | | |
| | | private String createTime; |
| | | private String startTime; |
| | | private String endTime; |
| | | |
| | | private String statusCd = "0"; |
| | | private String feeTypeCdName; |
| | |
| | | |
| | | private String payerObjType; |
| | | private String payerObjName; |
| | | |
| | | //alter table return_pay_fee add COLUMN apply_person_id varchar(30) comment '申请人ID'; |
| | | //alter table return_pay_fee add COLUMN apply_person_name varchar(30) comment '申请人'; |
| | | // |
| | | //alter table return_pay_fee add COLUMN audit_person_id varchar(30) comment '审核人ID'; |
| | | //alter table return_pay_fee add COLUMN audit_person_name varchar(30) comment '审核人'; |
| | | private String applyPersonId; |
| | | private String applyPersonName; |
| | | private String auditPersonId; |
| | | private String auditPersonName; |
| | | |
| | | private List<FeeAccountDetailDto> feeAccountDetailDtoList; |
| | | private List<PayFeeDetailDiscountDto> payFeeDetailDiscountDtoList; |
| | | |
| | | public String getReason() { |
| | | return reason; |
| | |
| | | public void setCommunityId(String communityId) { |
| | | this.communityId = communityId; |
| | | } |
| | | |
| | | |
| | | public String getCreateTime() { |
| | | return createTime; |
| | |
| | | public void setPayerObjName(String payerObjName) { |
| | | this.payerObjName = payerObjName; |
| | | } |
| | | |
| | | public List<FeeAccountDetailDto> getFeeAccountDetailDtoList() { |
| | | return feeAccountDetailDtoList; |
| | | } |
| | | |
| | | public void setFeeAccountDetailDtoList(List<FeeAccountDetailDto> feeAccountDetailDtoList) { |
| | | this.feeAccountDetailDtoList = feeAccountDetailDtoList; |
| | | } |
| | | |
| | | public List<PayFeeDetailDiscountDto> getPayFeeDetailDiscountDtoList() { |
| | | return payFeeDetailDiscountDtoList; |
| | | } |
| | | |
| | | public void setPayFeeDetailDiscountDtoList(List<PayFeeDetailDiscountDto> payFeeDetailDiscountDtoList) { |
| | | this.payFeeDetailDiscountDtoList = payFeeDetailDiscountDtoList; |
| | | } |
| | | |
| | | public String getStartTime() { |
| | | return startTime; |
| | | } |
| | | |
| | | public void setStartTime(String startTime) { |
| | | this.startTime = startTime; |
| | | } |
| | | |
| | | public String getEndTime() { |
| | | return endTime; |
| | | } |
| | | |
| | | public void setEndTime(String endTime) { |
| | | this.endTime = endTime; |
| | | } |
| | | |
| | | public String getApplyPersonId() { |
| | | return applyPersonId; |
| | | } |
| | | |
| | | public void setApplyPersonId(String applyPersonId) { |
| | | this.applyPersonId = applyPersonId; |
| | | } |
| | | |
| | | public String getApplyPersonName() { |
| | | return applyPersonName; |
| | | } |
| | | |
| | | public void setApplyPersonName(String applyPersonName) { |
| | | this.applyPersonName = applyPersonName; |
| | | } |
| | | |
| | | public String getAuditPersonId() { |
| | | return auditPersonId; |
| | | } |
| | | |
| | | public void setAuditPersonId(String auditPersonId) { |
| | | this.auditPersonId = auditPersonId; |
| | | } |
| | | |
| | | public String getAuditPersonName() { |
| | | return auditPersonName; |
| | | } |
| | | |
| | | public void setAuditPersonName(String auditPersonName) { |
| | | this.auditPersonName = auditPersonName; |
| | | } |
| | | } |