ParkingAreaAttrDto.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package com.java110.dto.parkingAreaAttr;
  2. import com.java110.dto.PageDto;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * @ClassName FloorDto
  7. * @Description 单元属性数据层封装
  8. * @Author wuxw
  9. * @Date 2019/4/24 8:52
  10. * @Version 1.0
  11. * add by wuxw 2019/4/24
  12. **/
  13. public class ParkingAreaAttrDto extends PageDto implements Serializable {
  14. private String attrId;
  15. private String paId;
  16. private String specCd;
  17. private String communityId;
  18. private String value;
  19. private String specName;
  20. private String valueName;
  21. private String listShow;
  22. private String specType;
  23. private Date createTime;
  24. private String statusCd = "0";
  25. public String getAttrId() {
  26. return attrId;
  27. }
  28. public void setAttrId(String attrId) {
  29. this.attrId = attrId;
  30. }
  31. public String getPaId() {
  32. return paId;
  33. }
  34. public void setPaId(String paId) {
  35. this.paId = paId;
  36. }
  37. public String getSpecCd() {
  38. return specCd;
  39. }
  40. public void setSpecCd(String specCd) {
  41. this.specCd = specCd;
  42. }
  43. public String getCommunityId() {
  44. return communityId;
  45. }
  46. public void setCommunityId(String communityId) {
  47. this.communityId = communityId;
  48. }
  49. public String getValue() {
  50. return value;
  51. }
  52. public void setValue(String value) {
  53. this.value = value;
  54. }
  55. public Date getCreateTime() {
  56. return createTime;
  57. }
  58. public void setCreateTime(Date createTime) {
  59. this.createTime = createTime;
  60. }
  61. public String getStatusCd() {
  62. return statusCd;
  63. }
  64. public void setStatusCd(String statusCd) {
  65. this.statusCd = statusCd;
  66. }
  67. public String getSpecName() {
  68. return specName;
  69. }
  70. public void setSpecName(String specName) {
  71. this.specName = specName;
  72. }
  73. public String getValueName() {
  74. return valueName;
  75. }
  76. public void setValueName(String valueName) {
  77. this.valueName = valueName;
  78. }
  79. public String getListShow() {
  80. return listShow;
  81. }
  82. public void setListShow(String listShow) {
  83. this.listShow = listShow;
  84. }
  85. public String getSpecType() {
  86. return specType;
  87. }
  88. public void setSpecType(String specType) {
  89. this.specType = specType;
  90. }
  91. }