8641037a41d717ee35fd64c7045f8024db6ff6ac.svn-base 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  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:BisInspRslkbkRgstr
  9. *
  10. * @author lhc
  11. * @date 2021-4-28
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspRslkbkRgstr extends BaseBean implements Serializable {
  15. // 水库名称
  16. @ApiModelProperty(value = "水库名称", name = "rsName")
  17. private String rsName;
  18. // 大坝是否注册(1:已注册;2:未注册)
  19. @ApiModelProperty(value = "大坝是否注册(1:已注册;2:未注册)", name = "hasDamRegCode")
  20. private String hasDamRegCode;
  21. // 大坝注册登记号
  22. @ApiModelProperty(value = "大坝注册登记号", name = "damRegCode")
  23. private String damRegCode;
  24. // 行政区编码
  25. @ApiModelProperty(value = "行政区编码", name = "adCode")
  26. private String adCode;
  27. // 行政区域描述
  28. @ApiModelProperty(value = "行政区域描述", name = "location")
  29. private String location;
  30. // 水库所在位置详细描述信息
  31. @ApiModelProperty(value = "水库所在位置详细描述信息", name = "hystSite")
  32. private String hystSite;
  33. // PC经度
  34. @ApiModelProperty(value = "PC经度", name = "centerX")
  35. private Double centerX;
  36. // PC纬度
  37. @ApiModelProperty(value = "PC纬度", name = "centerY")
  38. private Double centerY;
  39. // 高德经度
  40. @ApiModelProperty(value = "高德经度", name = "gdX")
  41. private Double gdX;
  42. // 高德纬度
  43. @ApiModelProperty(value = "高德纬度", name = "gdY")
  44. private Double gdY;
  45. // 水库管理单位代码
  46. @ApiModelProperty(value = "水库管理单位代码", name = "rsAdmCode")
  47. private String rsAdmCode;
  48. // 水库管理单位名称
  49. @ApiModelProperty(value = "水库管理单位名称", name = "rsAdmName")
  50. private String rsAdmName;
  51. // 工程规模(大一:1;大二:2;中型:3;小I:4;小II型:5)
  52. @ApiModelProperty(value = "工程规模(大一:1;大二:2;中型:3;小I:4;小II型:5)", name = "engScal")
  53. private String engScal;
  54. // 功能类别描述
  55. @ApiModelProperty(value = "功能类别描述", name = "rsClass")
  56. private String rsClass;
  57. // 主坝坝型(1:混凝土坝;2:碾压混凝土坝;3:浆砌石坝;4:土坝;5:堆石坝;6:挡水坝;7:其他)
  58. @ApiModelProperty(value = "主坝坝型(1:混凝土坝;2:碾压混凝土坝;3:浆砌石坝;4:土坝;5:堆石坝;6:挡水坝;7:其他)", name = "damType")
  59. private String damType;
  60. // 水库总库容(万m3)
  61. @ApiModelProperty(value = "水库总库容(万m3)", name = "totCap")
  62. private Double totCap;
  63. // 主坝最大坝高(m)
  64. @ApiModelProperty(value = "主坝最大坝高(m)", name = "damSizeHig")
  65. private Double damSizeHig;
  66. // 设计洪水位(m)
  67. @ApiModelProperty(value = "设计洪水位(m)", name = "desFlStag")
  68. private Double desFlStag;
  69. // 防洪高水位(m)
  70. @ApiModelProperty(value = "防洪高水位(m)", name = "flConTopStag")
  71. private Double flConTopStag;
  72. // 下闸蓄水时间
  73. @ApiModelProperty(value = "下闸蓄水时间", name = "impdDt")
  74. private Date impdDt;
  75. // 最近一次加固改造_蓄水运行时间
  76. @ApiModelProperty(value = "最近一次加固改造_蓄水运行时间", name = "rnfcImpdDt")
  77. private Date rnfcImpdDt;
  78. // 水库修建时间
  79. @ApiModelProperty(value = "水库修建时间", name = "resCreateTime")
  80. private Date resCreateTime;
  81. // 小组组长
  82. @ApiModelProperty(value = "小组组长", name = "groupLeader")
  83. private String groupLeader;
  84. // 小组组长电话
  85. @ApiModelProperty(value = "小组组长电话", name = "groupLeaderTel")
  86. private String groupLeaderTel;
  87. // 记录人员ID
  88. @ApiModelProperty(value = "记录人员ID", name = "recPersId")
  89. private String recPersId;
  90. // 记录人员名称
  91. @ApiModelProperty(value = "记录人员名称", name = "recPers")
  92. private String recPers;
  93. // 记录人员电话
  94. @ApiModelProperty(value = "记录人员电话", name = "recPersTel")
  95. private String recPersTel;
  96. // 创建时间
  97. @ApiModelProperty(value = "创建时间", name = "intm")
  98. private Date intm;
  99. // 最后修改时间
  100. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  101. private Date uptm;
  102. // 备注
  103. @ApiModelProperty(value = "备注", name = "note")
  104. private String note;
  105. // 督查状态(0:未督查;2:督查中;3:已督查)
  106. @ApiModelProperty(value = "督查状态(0:未督查;2:督查中;3:已督查)", name = "state")
  107. private String state;
  108. // 数据状态(0:正常;9:删除)
  109. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  110. private String dataStat;
  111. // 是否攻坚行动
  112. @ApiModelProperty(value = "是否攻坚行动", name = "isAction")
  113. private String isAction;
  114. // 督查形式 1必查 2 抽查 (福建)
  115. @ApiModelProperty(value = "督查形式 1必查 2 抽查 (福建)", name = "inspType")
  116. private String inspType;
  117. // 是否存在重大安全隐患 1是 2否(福建)
  118. @ApiModelProperty(value = "是否存在重大安全隐患 1是 2否(福建)", name = "isSaf")
  119. private String isSaf;
  120. // 主键ID
  121. @ApiModelProperty(value = "主键ID", name = "id")
  122. private String id;
  123. // 督查对象ID
  124. @ApiModelProperty(value = "督查对象ID", name = "objId")
  125. private String objId;
  126. // 水库编码
  127. @ApiModelProperty(value = "水库编码", name = "rsCode")
  128. private String rsCode;
  129. @ApiModelProperty("正常蓄水位(青海)")
  130. private Double normz;
  131. @ApiModelProperty("汛限水位(青海)")
  132. private Double fsltdz;
  133. @ApiModelProperty("汛限水位(青海)")
  134. private String rectStat;
  135. public BisInspRslkbkRgstr() {
  136. }
  137. public String getRectStat() {
  138. return rectStat;
  139. }
  140. public void setRectStat(String rectStat) {
  141. this.rectStat = rectStat;
  142. }
  143. public Double getNormz() {
  144. return normz;
  145. }
  146. public void setNormz(Double normz) {
  147. this.normz = normz;
  148. }
  149. public Double getFsltdz() {
  150. return fsltdz;
  151. }
  152. public void setFsltdz(Double fsltdz) {
  153. this.fsltdz = fsltdz;
  154. }
  155. public String getRsName() {
  156. return rsName;
  157. }
  158. public void setRsName(String rsName) {
  159. this.rsName = rsName;
  160. }
  161. public String getHasDamRegCode() {
  162. return hasDamRegCode;
  163. }
  164. public void setHasDamRegCode(String hasDamRegCode) {
  165. this.hasDamRegCode = hasDamRegCode;
  166. }
  167. public String getDamRegCode() {
  168. return damRegCode;
  169. }
  170. public void setDamRegCode(String damRegCode) {
  171. this.damRegCode = damRegCode;
  172. }
  173. public String getAdCode() {
  174. return adCode;
  175. }
  176. public void setAdCode(String adCode) {
  177. this.adCode = adCode;
  178. }
  179. public String getLocation() {
  180. return location;
  181. }
  182. public void setLocation(String location) {
  183. this.location = location;
  184. }
  185. public String getHystSite() {
  186. return hystSite;
  187. }
  188. public void setHystSite(String hystSite) {
  189. this.hystSite = hystSite;
  190. }
  191. public Double getCenterX() {
  192. return centerX;
  193. }
  194. public void setCenterX(Double centerX) {
  195. this.centerX = centerX;
  196. }
  197. public Double getCenterY() {
  198. return centerY;
  199. }
  200. public void setCenterY(Double centerY) {
  201. this.centerY = centerY;
  202. }
  203. public Double getGdX() {
  204. return gdX;
  205. }
  206. public void setGdX(Double gdX) {
  207. this.gdX = gdX;
  208. }
  209. public Double getGdY() {
  210. return gdY;
  211. }
  212. public void setGdY(Double gdY) {
  213. this.gdY = gdY;
  214. }
  215. public String getRsAdmCode() {
  216. return rsAdmCode;
  217. }
  218. public void setRsAdmCode(String rsAdmCode) {
  219. this.rsAdmCode = rsAdmCode;
  220. }
  221. public String getRsAdmName() {
  222. return rsAdmName;
  223. }
  224. public void setRsAdmName(String rsAdmName) {
  225. this.rsAdmName = rsAdmName;
  226. }
  227. public String getEngScal() {
  228. return engScal;
  229. }
  230. public void setEngScal(String engScal) {
  231. this.engScal = engScal;
  232. }
  233. public String getRsClass() {
  234. return rsClass;
  235. }
  236. public void setRsClass(String rsClass) {
  237. this.rsClass = rsClass;
  238. }
  239. public String getDamType() {
  240. return damType;
  241. }
  242. public void setDamType(String damType) {
  243. this.damType = damType;
  244. }
  245. public Double getTotCap() {
  246. return totCap;
  247. }
  248. public void setTotCap(Double totCap) {
  249. this.totCap = totCap;
  250. }
  251. public Double getDamSizeHig() {
  252. return damSizeHig;
  253. }
  254. public void setDamSizeHig(Double damSizeHig) {
  255. this.damSizeHig = damSizeHig;
  256. }
  257. public Double getDesFlStag() {
  258. return desFlStag;
  259. }
  260. public void setDesFlStag(Double desFlStag) {
  261. this.desFlStag = desFlStag;
  262. }
  263. public Double getFlConTopStag() {
  264. return flConTopStag;
  265. }
  266. public void setFlConTopStag(Double flConTopStag) {
  267. this.flConTopStag = flConTopStag;
  268. }
  269. public Date getImpdDt() {
  270. return impdDt;
  271. }
  272. public void setImpdDt(Date impdDt) {
  273. this.impdDt = impdDt;
  274. }
  275. public Date getRnfcImpdDt() {
  276. return rnfcImpdDt;
  277. }
  278. public void setRnfcImpdDt(Date rnfcImpdDt) {
  279. this.rnfcImpdDt = rnfcImpdDt;
  280. }
  281. public Date getResCreateTime() {
  282. return resCreateTime;
  283. }
  284. public void setResCreateTime(Date resCreateTime) {
  285. this.resCreateTime = resCreateTime;
  286. }
  287. public String getGroupLeader() {
  288. return groupLeader;
  289. }
  290. public void setGroupLeader(String groupLeader) {
  291. this.groupLeader = groupLeader;
  292. }
  293. public String getGroupLeaderTel() {
  294. return groupLeaderTel;
  295. }
  296. public void setGroupLeaderTel(String groupLeaderTel) {
  297. this.groupLeaderTel = groupLeaderTel;
  298. }
  299. public String getRecPersId() {
  300. return recPersId;
  301. }
  302. public void setRecPersId(String recPersId) {
  303. this.recPersId = recPersId;
  304. }
  305. public String getRecPers() {
  306. return recPers;
  307. }
  308. public void setRecPers(String recPers) {
  309. this.recPers = recPers;
  310. }
  311. public String getRecPersTel() {
  312. return recPersTel;
  313. }
  314. public void setRecPersTel(String recPersTel) {
  315. this.recPersTel = recPersTel;
  316. }
  317. public Date getIntm() {
  318. return intm;
  319. }
  320. public void setIntm(Date intm) {
  321. this.intm = intm;
  322. }
  323. public Date getUptm() {
  324. return uptm;
  325. }
  326. public void setUptm(Date uptm) {
  327. this.uptm = uptm;
  328. }
  329. public String getNote() {
  330. return note;
  331. }
  332. public void setNote(String note) {
  333. this.note = note;
  334. }
  335. public String getState() {
  336. return state;
  337. }
  338. public void setState(String state) {
  339. this.state = state;
  340. }
  341. public String getDataStat() {
  342. return dataStat;
  343. }
  344. public void setDataStat(String dataStat) {
  345. this.dataStat = dataStat;
  346. }
  347. public String getIsAction() {
  348. return isAction;
  349. }
  350. public void setIsAction(String isAction) {
  351. this.isAction = isAction;
  352. }
  353. public String getInspType() {
  354. return inspType;
  355. }
  356. public void setInspType(String inspType) {
  357. this.inspType = inspType;
  358. }
  359. public String getIsSaf() {
  360. return isSaf;
  361. }
  362. public void setIsSaf(String isSaf) {
  363. this.isSaf = isSaf;
  364. }
  365. public String getId() {
  366. return id;
  367. }
  368. public void setId(String id) {
  369. this.id = id;
  370. }
  371. public String getObjId() {
  372. return objId;
  373. }
  374. public void setObjId(String objId) {
  375. this.objId = objId;
  376. }
  377. public String getRsCode() {
  378. return rsCode;
  379. }
  380. public void setRsCode(String rsCode) {
  381. this.rsCode = rsCode;
  382. }
  383. @Override
  384. public String toString() {
  385. return "BisInspRslkbkRgstr [" + "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 + ", rsClass=" + rsClass + ", damType=" + damType + ", totCap=" + totCap + ", damSizeHig=" + damSizeHig + ", desFlStag=" + desFlStag + ", flConTopStag=" + flConTopStag + ", impdDt=" + impdDt + ", rnfcImpdDt=" + rnfcImpdDt + ", resCreateTime=" + resCreateTime + ", groupLeader=" + groupLeader + ", groupLeaderTel=" + groupLeaderTel + ", recPersId=" + recPersId + ", recPers=" + recPers + ", recPersTel=" + recPersTel + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", state=" + state + ", dataStat=" + dataStat + ", isAction=" + isAction + ", inspType=" + inspType + ", isSaf=" + isSaf + ", id=" + id + ", objId=" + objId + ", rsCode=" + rsCode + "]";
  386. }
  387. }