package com.java110.dto.reportFeeYearCollectionDetail;
|
|
import com.java110.dto.PageDto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @ClassName FloorDto
|
* @Description 费用年收费明细数据层封装
|
* @Author wuxw
|
* @Date 2019/4/24 8:52
|
* @Version 1.0
|
* add by wuxw 2019/4/24
|
**/
|
public class ReportFeeYearCollectionDetailDto extends PageDto implements Serializable {
|
|
private String collectionYear;
|
private String relationYear;
|
private String detailId;
|
private String receivableAmount;
|
private String receivedAmount;
|
private String communityId;
|
private String collectionId;
|
private String[] collectionIds;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
|
public String getCollectionYear() {
|
return collectionYear;
|
}
|
|
public void setCollectionYear(String collectionYear) {
|
this.collectionYear = collectionYear;
|
}
|
|
public String getRelationYear() {
|
return relationYear;
|
}
|
|
public void setRelationYear(String relationYear) {
|
this.relationYear = relationYear;
|
}
|
|
public String getDetailId() {
|
return detailId;
|
}
|
|
public void setDetailId(String detailId) {
|
this.detailId = detailId;
|
}
|
|
public String getReceivableAmount() {
|
return receivableAmount;
|
}
|
|
public void setReceivableAmount(String receivableAmount) {
|
this.receivableAmount = receivableAmount;
|
}
|
|
public String getReceivedAmount() {
|
return receivedAmount;
|
}
|
|
public void setReceivedAmount(String receivedAmount) {
|
this.receivedAmount = receivedAmount;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getCollectionId() {
|
return collectionId;
|
}
|
|
public void setCollectionId(String collectionId) {
|
this.collectionId = collectionId;
|
}
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String[] getCollectionIds() {
|
return collectionIds;
|
}
|
|
public void setCollectionIds(String[] collectionIds) {
|
this.collectionIds = collectionIds;
|
}
|
}
|