| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- package com.java110.dto.payFee;
- import com.java110.dto.PageDto;
- import com.java110.dto.fee.FeeAttrDto;
- import com.java110.dto.fee.FeeDto;
- import java.io.Serializable;
- import java.util.Date;
- import java.util.List;
- /**
- * @ClassName FloorDto
- * @Description 月缴费表数据层封装
- * @Author wuxw
- * @Date 2019/4/24 8:52
- * @Version 1.0
- * add by wuxw 2019/4/24
- **/
- public class PayFeeDetailMonthDto extends FeeDto implements Serializable {
- public static final String STATE_W = "W";//待缴费
- public static final String STATE_C = "C";//已缴费
- public static final String STATE_R = "R";//已退费
- private String detailMonth;
- private String detailYear;
- private String detailId;
- private String receivableAmount;
- private String discountAmount;
- private String remark;
- private String receivedAmount;
- private String communityId;
- private String feeId;
- private String monthId;
- private String[] monthIds;
- private Date createTime;
- private String statusCd = "0";
- private String objName;
- private String objId;
- private String objType;
- private String[] objIds;
- private String ownerName;
- private String ownerId;
- private String link;
- private String state;
- private String feeState;
- private String payFeeTime;
- private String curMonthTime;
- private String feeName;
- private String configId;
- private String objFpcId;
- private String feeTypeCd;
- private List<FeeAttrDto> feeAttrs;
- public String getDetailMonth() {
- return detailMonth;
- }
- public void setDetailMonth(String detailMonth) {
- this.detailMonth = detailMonth;
- }
- public String getDetailYear() {
- return detailYear;
- }
- public void setDetailYear(String detailYear) {
- this.detailYear = detailYear;
- }
- 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 getDiscountAmount() {
- return discountAmount;
- }
- public void setDiscountAmount(String discountAmount) {
- this.discountAmount = discountAmount;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- 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 getFeeId() {
- return feeId;
- }
- public void setFeeId(String feeId) {
- this.feeId = feeId;
- }
- public String getMonthId() {
- return monthId;
- }
- public void setMonthId(String monthId) {
- this.monthId = monthId;
- }
- 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 getObjName() {
- return objName;
- }
- public void setObjName(String objName) {
- this.objName = objName;
- }
- public String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getOwnerName() {
- return ownerName;
- }
- public void setOwnerName(String ownerName) {
- this.ownerName = ownerName;
- }
- public String getOwnerId() {
- return ownerId;
- }
- public void setOwnerId(String ownerId) {
- this.ownerId = ownerId;
- }
- public String getLink() {
- return link;
- }
- public void setLink(String link) {
- this.link = link;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getPayFeeTime() {
- return payFeeTime;
- }
- public void setPayFeeTime(String payFeeTime) {
- this.payFeeTime = payFeeTime;
- }
- public String getCurMonthTime() {
- return curMonthTime;
- }
- public void setCurMonthTime(String curMonthTime) {
- this.curMonthTime = curMonthTime;
- }
- public String getFeeName() {
- return feeName;
- }
- public void setFeeName(String feeName) {
- this.feeName = feeName;
- }
- public String getConfigId() {
- return configId;
- }
- public void setConfigId(String configId) {
- this.configId = configId;
- }
- public String[] getObjIds() {
- return objIds;
- }
- public void setObjIds(String[] objIds) {
- this.objIds = objIds;
- }
- public String getObjType() {
- return objType;
- }
- public void setObjType(String objType) {
- this.objType = objType;
- }
- public List<FeeAttrDto> getFeeAttrs() {
- return feeAttrs;
- }
- public void setFeeAttrs(List<FeeAttrDto> feeAttrs) {
- this.feeAttrs = feeAttrs;
- }
- public String[] getMonthIds() {
- return monthIds;
- }
- public void setMonthIds(String[] monthIds) {
- this.monthIds = monthIds;
- }
- public String getFeeState() {
- return feeState;
- }
- public void setFeeState(String feeState) {
- this.feeState = feeState;
- }
- public String getObjFpcId() {
- return objFpcId;
- }
- public void setObjFpcId(String objFpcId) {
- this.objFpcId = objFpcId;
- }
- @Override
- public String getFeeTypeCd() {
- return feeTypeCd;
- }
- @Override
- public void setFeeTypeCd(String feeTypeCd) {
- this.feeTypeCd = feeTypeCd;
- }
- }
|