550d6b5cc5c4e92ccf4ae6f3924999f2d669cbbc.svn-base 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. /**
  5. * Created by jinshui on 2019/8/1.
  6. */
  7. public class BisInspSdRgstrDto implements Serializable {
  8. private String objId;
  9. private String name;
  10. private String sdName;
  11. private String intm;
  12. private String uptm;
  13. private String type;
  14. private String location;
  15. @ApiModelProperty(value = "基本信息表id")
  16. private String baseId;
  17. private String code;
  18. private String rgstrId;
  19. public String getSdName() {
  20. return sdName;
  21. }
  22. public void setSdName(String sdName) {
  23. this.sdName = sdName;
  24. }
  25. private String fscState;
  26. private String groupName;
  27. private String groupId;
  28. private String riverName;
  29. private String adFullName;
  30. private String province;
  31. private String city;
  32. private String county;
  33. private Double lgtd;
  34. private Double lttd;
  35. private Double lgtdPc;
  36. private Double lttdPc;
  37. @ApiModelProperty("督查组id")
  38. private String nodeId;
  39. @ApiModelProperty("督查对象名称")
  40. private String nm;
  41. @ApiModelProperty("对象主键id")
  42. private String id;
  43. @ApiModelProperty("督查对象类型")
  44. private String ptype;
  45. @ApiModelProperty("淤地坝类型")
  46. private String sdType;
  47. @ApiModelProperty("经度")
  48. private Double centerX;
  49. @ApiModelProperty("纬度")
  50. private Double centerY;
  51. @ApiModelProperty("高德经度")
  52. private Double gdX;
  53. @ApiModelProperty("高德纬度")
  54. private Double gdY;
  55. @ApiModelProperty("督查状态")
  56. private String state;
  57. public String getGroupId() {
  58. return groupId;
  59. }
  60. public void setGroupId(String groupId) {
  61. this.groupId = groupId;
  62. }
  63. public Double getLgtdPc() {
  64. return lgtdPc;
  65. }
  66. public void setLgtdPc(Double lgtdPc) {
  67. this.lgtdPc = lgtdPc;
  68. }
  69. public Double getLttdPc() {
  70. return lttdPc;
  71. }
  72. public void setLttdPc(Double lttdPc) {
  73. this.lttdPc = lttdPc;
  74. }
  75. public Double getLgtd() {
  76. return lgtd;
  77. }
  78. public void setLgtd(Double lgtd) {
  79. this.lgtd = lgtd;
  80. }
  81. public Double getLttd() {
  82. return lttd;
  83. }
  84. public void setLttd(Double lttd) {
  85. this.lttd = lttd;
  86. }
  87. public String getState() {
  88. return state;
  89. }
  90. public void setState(String state) {
  91. this.state = state;
  92. }
  93. public String getNm() {
  94. return nm;
  95. }
  96. public void setNm(String nm) {
  97. this.nm = nm;
  98. }
  99. public String getId() {
  100. return id;
  101. }
  102. public void setId(String id) {
  103. this.id = id;
  104. }
  105. public String getPtype() {
  106. return ptype;
  107. }
  108. public void setPtype(String ptype) {
  109. this.ptype = ptype;
  110. }
  111. public String getSdType() {
  112. return sdType;
  113. }
  114. public void setSdType(String sdType) {
  115. this.sdType = sdType;
  116. }
  117. public Double getCenterX() {
  118. return centerX;
  119. }
  120. public void setCenterX(Double centerX) {
  121. this.centerX = centerX;
  122. }
  123. public Double getCenterY() {
  124. return centerY;
  125. }
  126. public void setCenterY(Double centerY) {
  127. this.centerY = centerY;
  128. }
  129. public Double getGdX() {
  130. return gdX;
  131. }
  132. public void setGdX(Double gdX) {
  133. this.gdX = gdX;
  134. }
  135. public Double getGdY() {
  136. return gdY;
  137. }
  138. public void setGdY(Double gdY) {
  139. this.gdY = gdY;
  140. }
  141. public String getNodeId() {
  142. return nodeId;
  143. }
  144. public void setNodeId(String nodeId) {
  145. this.nodeId = nodeId;
  146. }
  147. public String getBaseId() {
  148. return baseId;
  149. }
  150. public void setBaseId(String baseId) {
  151. this.baseId = baseId;
  152. }
  153. public String getObjId() {
  154. return objId;
  155. }
  156. public void setObjId(String objId) {
  157. this.objId = objId;
  158. }
  159. public String getName() {
  160. return name;
  161. }
  162. public void setName(String name) {
  163. this.name = name;
  164. }
  165. public String getIntm() {
  166. return intm;
  167. }
  168. public void setIntm(String intm) {
  169. this.intm = intm;
  170. }
  171. public String getUptm() {
  172. return uptm;
  173. }
  174. public void setUptm(String uptm) {
  175. this.uptm = uptm;
  176. }
  177. public String getType() {
  178. return type;
  179. }
  180. public void setType(String type) {
  181. this.type = type;
  182. }
  183. public String getLocation() {
  184. return location;
  185. }
  186. public void setLocation(String location) {
  187. this.location = location;
  188. }
  189. public String getCode() {
  190. return code;
  191. }
  192. public void setCode(String code) {
  193. this.code = code;
  194. }
  195. public String getRgstrId() {
  196. return rgstrId;
  197. }
  198. public void setRgstrId(String rgstrId) {
  199. this.rgstrId = rgstrId;
  200. }
  201. public String getFscState() {
  202. return fscState;
  203. }
  204. public void setFscState(String fscState) {
  205. this.fscState = fscState;
  206. }
  207. public String getGroupName() {
  208. return groupName;
  209. }
  210. public void setGroupName(String groupName) {
  211. this.groupName = groupName;
  212. }
  213. public String getRiverName() {
  214. return riverName;
  215. }
  216. public void setRiverName(String riverName) {
  217. this.riverName = riverName;
  218. }
  219. public String getAdFullName() {
  220. return adFullName;
  221. }
  222. public void setAdFullName(String adFullName) {
  223. this.adFullName = adFullName;
  224. }
  225. public String getProvince() {
  226. return province;
  227. }
  228. public void setProvince(String province) {
  229. this.province = province;
  230. }
  231. public String getCity() {
  232. return city;
  233. }
  234. public void setCity(String city) {
  235. this.city = city;
  236. }
  237. public String getCounty() {
  238. return county;
  239. }
  240. public void setCounty(String county) {
  241. this.county = county;
  242. }
  243. }