FeeConfigDto.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package com.java110.dto;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * @ClassName FloorDto
  6. * @Description 费用配置数据层封装
  7. * @Author wuxw
  8. * @Date 2019/4/24 8:52
  9. * @Version 1.0
  10. * add by wuxw 2019/4/24
  11. **/
  12. public class FeeConfigDto extends PageDto implements Serializable {
  13. private String squarePrice;
  14. private String feeTypeCd;
  15. private String configId;
  16. private String additionalAmount;
  17. private String communityId;
  18. private Date createTime;
  19. private String statusCd = "0";
  20. public String getSquarePrice() {
  21. return squarePrice;
  22. }
  23. public void setSquarePrice(String squarePrice) {
  24. this.squarePrice = squarePrice;
  25. }
  26. public String getFeeTypeCd() {
  27. return feeTypeCd;
  28. }
  29. public void setFeeTypeCd(String feeTypeCd) {
  30. this.feeTypeCd = feeTypeCd;
  31. }
  32. public String getConfigId() {
  33. return configId;
  34. }
  35. public void setConfigId(String configId) {
  36. this.configId = configId;
  37. }
  38. public String getAdditionalAmount() {
  39. return additionalAmount;
  40. }
  41. public void setAdditionalAmount(String additionalAmount) {
  42. this.additionalAmount = additionalAmount;
  43. }
  44. public String getCommunityId() {
  45. return communityId;
  46. }
  47. public void setCommunityId(String communityId) {
  48. this.communityId = communityId;
  49. }
  50. public Date getCreateTime() {
  51. return createTime;
  52. }
  53. public void setCreateTime(Date createTime) {
  54. this.createTime = createTime;
  55. }
  56. public String getStatusCd() {
  57. return statusCd;
  58. }
  59. public void setStatusCd(String statusCd) {
  60. this.statusCd = statusCd;
  61. }
  62. }