8ee211501adbbdf734365c26cdc53b3ba6a64d22.svn-base 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import cn.com.goldenwater.dcproj.model.BisInspPblm;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import java.io.Serializable;
  6. import java.util.List;
  7. /**
  8. * entity:BisInspWtdst
  9. *
  10. * @author zhengdafei
  11. * @date 2019-2-21
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspWtdstDto extends BaseBean implements Serializable {
  15. // 水毁修复清单ID
  16. private String wtdstId;
  17. // 类别名称
  18. private String wtdstType;
  19. // 项目名称
  20. private String wtdstNm;
  21. // 修复状态
  22. private String wtdstState;
  23. // 所在行政区划代码
  24. private String locAd;
  25. // 水毁情况
  26. private String wtdstDtle;
  27. // 主要工程量
  28. private String wtdstWrkam;
  29. // 计划修复日期
  30. private String planRcvrTm;
  31. // 插入时间
  32. private String intm;
  33. // 最后更新时间
  34. private String uptm;
  35. // 备注
  36. private String note;
  37. // 水毁位置经度
  38. private Double wtdstLgtd;
  39. // 水毁位置纬度
  40. private Double wtdstLttd;
  41. // 项目所在位置
  42. private String locNm;
  43. private List<BisInspPblm> list;
  44. public List<BisInspPblm> getList() {
  45. return list;
  46. }
  47. public void setList(List<BisInspPblm> list) {
  48. this.list = list;
  49. }
  50. public BisInspWtdstDto() {
  51. }
  52. public String getWtdstId() {
  53. return wtdstId;
  54. }
  55. public void setWtdstId(String wtdstId) {
  56. this.wtdstId = wtdstId;
  57. }
  58. public String getWtdstType() {
  59. return wtdstType;
  60. }
  61. public void setWtdstType(String wtdstType) {
  62. this.wtdstType = wtdstType;
  63. }
  64. public String getWtdstNm() {
  65. return wtdstNm;
  66. }
  67. public void setWtdstNm(String wtdstNm) {
  68. this.wtdstNm = wtdstNm;
  69. }
  70. public String getWtdstState() {
  71. return wtdstState;
  72. }
  73. public void setWtdstState(String wtdstState) {
  74. this.wtdstState = wtdstState;
  75. }
  76. public String getLocAd() {
  77. return locAd;
  78. }
  79. public void setLocAd(String locAd) {
  80. this.locAd = locAd;
  81. }
  82. public String getWtdstDtle() {
  83. return wtdstDtle;
  84. }
  85. public void setWtdstDtle(String wtdstDtle) {
  86. this.wtdstDtle = wtdstDtle;
  87. }
  88. public String getWtdstWrkam() {
  89. return wtdstWrkam;
  90. }
  91. public void setWtdstWrkam(String wtdstWrkam) {
  92. this.wtdstWrkam = wtdstWrkam;
  93. }
  94. public String getPlanRcvrTm() {
  95. return planRcvrTm;
  96. }
  97. public void setPlanRcvrTm(String planRcvrTm) {
  98. this.planRcvrTm = planRcvrTm;
  99. }
  100. public String getIntm() {
  101. return intm;
  102. }
  103. public void setIntm(String intm) {
  104. this.intm = intm;
  105. }
  106. public String getUptm() {
  107. return uptm;
  108. }
  109. public void setUptm(String uptm) {
  110. this.uptm = uptm;
  111. }
  112. public String getNote() {
  113. return note;
  114. }
  115. public void setNote(String note) {
  116. this.note = note;
  117. }
  118. public Double getWtdstLgtd() {
  119. return wtdstLgtd;
  120. }
  121. public void setWtdstLgtd(Double wtdstLgtd) {
  122. this.wtdstLgtd = wtdstLgtd;
  123. }
  124. public Double getWtdstLttd() {
  125. return wtdstLttd;
  126. }
  127. public void setWtdstLttd(Double wtdstLttd) {
  128. this.wtdstLttd = wtdstLttd;
  129. }
  130. public String getLocNm() {
  131. return locNm;
  132. }
  133. public void setLocNm(String locNm) {
  134. this.locNm = locNm;
  135. }
  136. @Override
  137. public String toString() {
  138. return "BisInspWtdst [" + "wtdstId=" + wtdstId + ", wtdstType=" + wtdstType + ", wtdstNm=" + wtdstNm + ", wtdstState=" + wtdstState + ", locAd=" + locAd + ", wtdstDtle=" + wtdstDtle + ", wtdstWrkam=" + wtdstWrkam + ", planRcvrTm=" + planRcvrTm + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", wtdstLgtd=" + wtdstLgtd + ", wtdstLttd=" + wtdstLttd + ", locNm=" + locNm + "]";
  139. }
  140. }