5e22bab519ae210cb39e60d3739da0ae3948b261.svn-base 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisInspRsfcoqhRgstr
  9. *
  10. * @author lhc
  11. * @date 2021-6-16
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspRsfcoqhRgstr extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 督查对象ID
  19. @ApiModelProperty(value = "督查对象ID", name = "objId")
  20. private String objId;
  21. // 水库编码
  22. @ApiModelProperty(value = "水库编码", name = "rsCode")
  23. private String rsCode;
  24. // 水库名称
  25. @ApiModelProperty(value = "水库名称", name = "rsName")
  26. private String rsName;
  27. // 大坝是否注册(1:已注册;2:未注册)
  28. @ApiModelProperty(value = "大坝是否注册(1:已注册;2:未注册)", name = "hasDamRegCode")
  29. private String hasDamRegCode;
  30. // 大坝注册登记号
  31. @ApiModelProperty(value = "大坝注册登记号", name = "damRegCode")
  32. private String damRegCode;
  33. // 行政区编码
  34. @ApiModelProperty(value = "行政区编码", name = "adCode")
  35. private String adCode;
  36. @ApiModelProperty(value = "行政区", name = "adName")
  37. private String adName;
  38. // 行政区域描述
  39. @ApiModelProperty(value = "行政区域描述", name = "location")
  40. private String location;
  41. // 水库所在位置详细描述信息
  42. @ApiModelProperty(value = "水库所在位置详细描述信息", name = "hystSite")
  43. private String hystSite;
  44. // PC经度
  45. @ApiModelProperty(value = "PC经度", name = "centerX")
  46. private Double centerX;
  47. // PC纬度
  48. @ApiModelProperty(value = "PC纬度", name = "centerY")
  49. private Double centerY;
  50. // 高德经度
  51. @ApiModelProperty(value = "高德经度", name = "gdX")
  52. private Double gdX;
  53. // 高德纬度
  54. @ApiModelProperty(value = "高德纬度", name = "gdY")
  55. private Double gdY;
  56. // 水库管理单位代码
  57. @ApiModelProperty(value = "水库管理单位代码", name = "rsAdmCode")
  58. private String rsAdmCode;
  59. // 水库管理单位名称
  60. @ApiModelProperty(value = "水库管理单位名称", name = "rsAdmName")
  61. private String rsAdmName;
  62. // 工程规模(大一:1;大二:2;中型:3;小I:4;小II型:5)
  63. @ApiModelProperty(value = "工程规模(大一:1;大二:2;中型:3;小I:4;小II型:5)", name = "engScal")
  64. private String engScal;
  65. // 主坝坝型(1:混凝土坝;2:碾压混凝土坝;3:浆砌石坝;4:土坝;5:堆石坝;6:挡水坝;7:其他)
  66. @ApiModelProperty(value = "主坝坝型(1:混凝土坝;2:碾压混凝土坝;3:浆砌石坝;4:土坝;5:堆石坝;6:挡水坝;7:其他)", name = "damType")
  67. private String damType;
  68. // 水库总库容(万m3)
  69. @ApiModelProperty(value = "水库总库容(万m3)", name = "totCap")
  70. private Double totCap;
  71. // 主坝最大坝高(m)
  72. @ApiModelProperty(value = "主坝最大坝高(m)", name = "damSizeHig")
  73. private Double damSizeHig;
  74. // 水库修建时间
  75. @ApiModelProperty(value = "水库修建时间", name = "resCreateTime")
  76. private Date resCreateTime;
  77. // 水库安全度汛检查表填报状态
  78. @ApiModelProperty(value = "水库安全度汛检查表填报状态", name = "presState")
  79. private String presState;
  80. // 督查状态(0:未督查;2:督查中;3:已督查)
  81. @ApiModelProperty(value = "督查状态(0:未督查;2:督查中;3:已督查)", name = "state")
  82. private String state;
  83. // 小组组长
  84. @ApiModelProperty(value = "小组组长", name = "groupLeader")
  85. private String groupLeader;
  86. // 小组组长电话
  87. @ApiModelProperty(value = "小组组长电话", name = "groupLeaderTel")
  88. private String groupLeaderTel;
  89. // 记录人员ID
  90. @ApiModelProperty(value = "记录人员ID", name = "recPersId")
  91. private String recPersId;
  92. // 记录人员名称
  93. @ApiModelProperty(value = "记录人员名称", name = "recPers")
  94. private String recPers;
  95. // 记录人员电话
  96. @ApiModelProperty(value = "记录人员电话", name = "recPersTel")
  97. private String recPersTel;
  98. // 创建时间
  99. @ApiModelProperty(value = "创建时间", name = "intm")
  100. private Date intm;
  101. // 最后修改时间
  102. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  103. private Date uptm;
  104. // 备注
  105. @ApiModelProperty(value = "备注", name = "note")
  106. private String note;
  107. private String dataStat;
  108. public BisInspRsfcoqhRgstr() {
  109. }
  110. public String getAdName() {
  111. return adName;
  112. }
  113. public void setAdName(String adName) {
  114. this.adName = adName;
  115. }
  116. public String getId() {
  117. return id;
  118. }
  119. public void setId(String id) {
  120. this.id = id;
  121. }
  122. public String getObjId() {
  123. return objId;
  124. }
  125. public void setObjId(String objId) {
  126. this.objId = objId;
  127. }
  128. public String getRsCode() {
  129. return rsCode;
  130. }
  131. public void setRsCode(String rsCode) {
  132. this.rsCode = rsCode;
  133. }
  134. public String getRsName() {
  135. return rsName;
  136. }
  137. public void setRsName(String rsName) {
  138. this.rsName = rsName;
  139. }
  140. public String getHasDamRegCode() {
  141. return hasDamRegCode;
  142. }
  143. public void setHasDamRegCode(String hasDamRegCode) {
  144. this.hasDamRegCode = hasDamRegCode;
  145. }
  146. public String getDamRegCode() {
  147. return damRegCode;
  148. }
  149. public void setDamRegCode(String damRegCode) {
  150. this.damRegCode = damRegCode;
  151. }
  152. public String getAdCode() {
  153. return adCode;
  154. }
  155. public void setAdCode(String adCode) {
  156. this.adCode = adCode;
  157. }
  158. public String getLocation() {
  159. return location;
  160. }
  161. public void setLocation(String location) {
  162. this.location = location;
  163. }
  164. public String getHystSite() {
  165. return hystSite;
  166. }
  167. public void setHystSite(String hystSite) {
  168. this.hystSite = hystSite;
  169. }
  170. public Double getCenterX() {
  171. return centerX;
  172. }
  173. public void setCenterX(Double centerX) {
  174. this.centerX = centerX;
  175. }
  176. public Double getCenterY() {
  177. return centerY;
  178. }
  179. public void setCenterY(Double centerY) {
  180. this.centerY = centerY;
  181. }
  182. public Double getGdX() {
  183. return gdX;
  184. }
  185. public void setGdX(Double gdX) {
  186. this.gdX = gdX;
  187. }
  188. public Double getGdY() {
  189. return gdY;
  190. }
  191. public void setGdY(Double gdY) {
  192. this.gdY = gdY;
  193. }
  194. public String getRsAdmCode() {
  195. return rsAdmCode;
  196. }
  197. public void setRsAdmCode(String rsAdmCode) {
  198. this.rsAdmCode = rsAdmCode;
  199. }
  200. public String getRsAdmName() {
  201. return rsAdmName;
  202. }
  203. public void setRsAdmName(String rsAdmName) {
  204. this.rsAdmName = rsAdmName;
  205. }
  206. public String getEngScal() {
  207. return engScal;
  208. }
  209. public void setEngScal(String engScal) {
  210. this.engScal = engScal;
  211. }
  212. public String getDamType() {
  213. return damType;
  214. }
  215. public void setDamType(String damType) {
  216. this.damType = damType;
  217. }
  218. public Double getTotCap() {
  219. return totCap;
  220. }
  221. public void setTotCap(Double totCap) {
  222. this.totCap = totCap;
  223. }
  224. public Double getDamSizeHig() {
  225. return damSizeHig;
  226. }
  227. public void setDamSizeHig(Double damSizeHig) {
  228. this.damSizeHig = damSizeHig;
  229. }
  230. public Date getResCreateTime() {
  231. return resCreateTime;
  232. }
  233. public void setResCreateTime(Date resCreateTime) {
  234. this.resCreateTime = resCreateTime;
  235. }
  236. public String getPresState() {
  237. return presState;
  238. }
  239. public void setPresState(String presState) {
  240. this.presState = presState;
  241. }
  242. public String getState() {
  243. return state;
  244. }
  245. public void setState(String state) {
  246. this.state = state;
  247. }
  248. public String getGroupLeader() {
  249. return groupLeader;
  250. }
  251. public void setGroupLeader(String groupLeader) {
  252. this.groupLeader = groupLeader;
  253. }
  254. public String getGroupLeaderTel() {
  255. return groupLeaderTel;
  256. }
  257. public void setGroupLeaderTel(String groupLeaderTel) {
  258. this.groupLeaderTel = groupLeaderTel;
  259. }
  260. public String getRecPersId() {
  261. return recPersId;
  262. }
  263. public void setRecPersId(String recPersId) {
  264. this.recPersId = recPersId;
  265. }
  266. public String getRecPers() {
  267. return recPers;
  268. }
  269. public void setRecPers(String recPers) {
  270. this.recPers = recPers;
  271. }
  272. public String getRecPersTel() {
  273. return recPersTel;
  274. }
  275. public void setRecPersTel(String recPersTel) {
  276. this.recPersTel = recPersTel;
  277. }
  278. public Date getIntm() {
  279. return intm;
  280. }
  281. public void setIntm(Date intm) {
  282. this.intm = intm;
  283. }
  284. public Date getUptm() {
  285. return uptm;
  286. }
  287. public void setUptm(Date uptm) {
  288. this.uptm = uptm;
  289. }
  290. public String getNote() {
  291. return note;
  292. }
  293. public void setNote(String note) {
  294. this.note = note;
  295. }
  296. public String getDataStat() {
  297. return dataStat;
  298. }
  299. public void setDataStat(String dataStat) {
  300. this.dataStat = dataStat;
  301. }
  302. @Override
  303. public String toString() {
  304. return "BisInspRsfcoqhRgstr [" + "id=" + id + ", objId=" + objId + ", rsCode=" + rsCode + ", rsName=" + rsName + ", hasDamRegCode=" + hasDamRegCode + ", damRegCode=" + damRegCode + ", adCode=" + adCode + ", location=" + location + ", hystSite=" + hystSite + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", rsAdmCode=" + rsAdmCode + ", rsAdmName=" + rsAdmName + ", engScal=" + engScal + ", damType=" + damType + ", totCap=" + totCap + ", damSizeHig=" + damSizeHig + ", resCreateTime=" + resCreateTime + ", presState=" + presState + ", state=" + state + ", groupLeader=" + groupLeader + ", groupLeaderTel=" + groupLeaderTel + ", recPersId=" + recPersId + ", recPers=" + recPers + ", recPersTel=" + recPersTel + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]";
  305. }
  306. }