| | |
| | | package com.java110.vo; |
| | | |
| | | import com.java110.po.fee.PayFeePo; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | public class FeeQueryParams { |
| | | private String communityId; |
| | | private Integer startYear; |
| | | private Integer endYear; |
| | | |
| | | private List<PayFeePo> payFeePos; |
| | | private BigDecimal[][] reports; |
| | | // getters and setters |
| | | |
| | | public String getCommunityId() { |
| | |
| | | public void setEndYear(Integer endYear) { |
| | | this.endYear = endYear; |
| | | } |
| | | |
| | | public List<PayFeePo> getPayFeePos() { |
| | | return payFeePos; |
| | | } |
| | | |
| | | public void setPayFeePos(List<PayFeePo> payFeePos) { |
| | | this.payFeePos = payFeePos; |
| | | } |
| | | |
| | | public BigDecimal[][] getReports() { |
| | | return reports; |
| | | } |
| | | |
| | | public void setReports(BigDecimal[][] reports) { |
| | | this.reports = reports; |
| | | } |
| | | } |