1877a4a6bd839a89ed11db72670bdae13bfee237.svn-base 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. package cn.com.goldenwater.dcproj.model;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. /**
  5. * Created by 61618 on 2019/2/25.
  6. */
  7. public class AttPersWtdst extends PersObj implements Serializable {
  8. // 水毁修复清单ID
  9. @ApiModelProperty("水毁修复清单ID")
  10. private String wtdstId;
  11. // 登记表ID
  12. @ApiModelProperty("登记表ID")
  13. private String trackId;
  14. // 类别名称
  15. @ApiModelProperty("类别名称")
  16. private String wtdstType;
  17. // 项目名称
  18. @ApiModelProperty("项目名称")
  19. private String wtdstNm;
  20. // 修复状态
  21. @ApiModelProperty("修复状态")
  22. private String wtdstState;
  23. // 所在行政区划代码
  24. @ApiModelProperty("行政区划代码")
  25. private String locAd;
  26. // 水毁情况
  27. @ApiModelProperty("水毁情况")
  28. private String wtdstDtle;
  29. // 主要工程量
  30. @ApiModelProperty("主要工程量")
  31. private String wtdstWrkam;
  32. // 计划修复日期
  33. @ApiModelProperty("计划修复日期")
  34. private String planRcvrTm;
  35. // 插入时间
  36. @ApiModelProperty("对象生成时间")
  37. private String intm;
  38. // 最后更新时间
  39. @ApiModelProperty("对象更新时间")
  40. private String uptm;
  41. // 备注
  42. @ApiModelProperty("备注")
  43. private String note;
  44. // 水毁位置经度
  45. @ApiModelProperty("经度")
  46. private Double wtdstLgtd;
  47. // 水毁位置纬度
  48. @ApiModelProperty("纬度")
  49. private Double wtdstLttd;
  50. // 项目所在位置
  51. @ApiModelProperty("详细位置")
  52. private String locNm;
  53. @ApiModelProperty("行政区划名称")
  54. private String adName;
  55. private String adNm;
  56. @ApiModelProperty(value = "高德经度")
  57. private Double centerXGd;
  58. @ApiModelProperty(value = "高德纬度")
  59. private Double centerYGd;
  60. @ApiModelProperty("是否省属(1:是;2:否)")
  61. private String provincial;
  62. // 状态
  63. @ApiModelProperty("状态")
  64. private String state;
  65. public String getState() {
  66. return state;
  67. }
  68. public void setState(String state) {
  69. this.state = state;
  70. }
  71. public String getTrackId() {
  72. return trackId;
  73. }
  74. public void setTrackId(String trackId) {
  75. this.trackId = trackId;
  76. }
  77. public String getAdNm() {
  78. return adNm;
  79. }
  80. public Double getCenterXGd() {
  81. return centerXGd;
  82. }
  83. public void setCenterXGd(Double centerXGd) {
  84. this.centerXGd = centerXGd;
  85. }
  86. public Double getCenterYGd() {
  87. return centerYGd;
  88. }
  89. public void setCenterYGd(Double centerYGd) {
  90. this.centerYGd = centerYGd;
  91. }
  92. public void setAdNm(String adNm) {
  93. this.adNm = adNm;
  94. }
  95. public String getAdName() {
  96. return adName;
  97. }
  98. public void setAdName(String adName) {
  99. this.adName = adName;
  100. }
  101. public String getWtdstId() {
  102. return wtdstId;
  103. }
  104. public void setWtdstId(String wtdstId) {
  105. this.wtdstId = wtdstId;
  106. }
  107. public String getWtdstType() {
  108. return wtdstType;
  109. }
  110. public void setWtdstType(String wtdstType) {
  111. this.wtdstType = wtdstType;
  112. }
  113. public String getWtdstNm() {
  114. return wtdstNm;
  115. }
  116. public void setWtdstNm(String wtdstNm) {
  117. this.wtdstNm = wtdstNm;
  118. }
  119. public String getWtdstState() {
  120. return wtdstState;
  121. }
  122. public void setWtdstState(String wtdstState) {
  123. this.wtdstState = wtdstState;
  124. }
  125. public String getLocAd() {
  126. return locAd;
  127. }
  128. public void setLocAd(String locAd) {
  129. this.locAd = locAd;
  130. }
  131. public String getWtdstDtle() {
  132. return wtdstDtle;
  133. }
  134. public void setWtdstDtle(String wtdstDtle) {
  135. this.wtdstDtle = wtdstDtle;
  136. }
  137. public String getWtdstWrkam() {
  138. return wtdstWrkam;
  139. }
  140. public void setWtdstWrkam(String wtdstWrkam) {
  141. this.wtdstWrkam = wtdstWrkam;
  142. }
  143. public String getPlanRcvrTm() {
  144. return planRcvrTm;
  145. }
  146. public void setPlanRcvrTm(String planRcvrTm) {
  147. this.planRcvrTm = planRcvrTm;
  148. }
  149. public String getIntm() {
  150. return intm;
  151. }
  152. public void setIntm(String intm) {
  153. this.intm = intm;
  154. }
  155. public String getUptm() {
  156. return uptm;
  157. }
  158. public void setUptm(String uptm) {
  159. this.uptm = uptm;
  160. }
  161. public String getNote() {
  162. return note;
  163. }
  164. public void setNote(String note) {
  165. this.note = note;
  166. }
  167. public Double getWtdstLgtd() {
  168. return wtdstLgtd;
  169. }
  170. public void setWtdstLgtd(Double wtdstLgtd) {
  171. this.wtdstLgtd = wtdstLgtd;
  172. }
  173. public Double getWtdstLttd() {
  174. return wtdstLttd;
  175. }
  176. public void setWtdstLttd(Double wtdstLttd) {
  177. this.wtdstLttd = wtdstLttd;
  178. }
  179. public String getLocNm() {
  180. return locNm;
  181. }
  182. public void setLocNm(String locNm) {
  183. this.locNm = locNm;
  184. }
  185. public String getProvincial() {
  186. return provincial;
  187. }
  188. public void setProvincial(String provincial) {
  189. this.provincial = provincial;
  190. }
  191. @Override
  192. public String toString() {
  193. return "AttPersWtdst{" +
  194. "wtdstId='" + wtdstId + '\'' +
  195. ", wtdstType='" + wtdstType + '\'' +
  196. ", wtdstNm='" + wtdstNm + '\'' +
  197. ", wtdstState='" + wtdstState + '\'' +
  198. ", locAd='" + locAd + '\'' +
  199. ", wtdstDtle='" + wtdstDtle + '\'' +
  200. ", wtdstWrkam='" + wtdstWrkam + '\'' +
  201. ", planRcvrTm='" + planRcvrTm + '\'' +
  202. ", intm='" + intm + '\'' +
  203. ", uptm='" + uptm + '\'' +
  204. ", note='" + note + '\'' +
  205. ", wtdstLgtd=" + wtdstLgtd +
  206. ", wtdstLttd=" + wtdstLttd +
  207. ", locNm='" + locNm + '\'' +
  208. ", provincial='" + provincial + '\'' +
  209. '}';
  210. }
  211. }