4f814a5435e4ce5e3e72b0bd1217e7bd11971954.svn-base 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  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:BisInspRsfcoqhPres
  9. *
  10. * @author lhc
  11. * @date 2021-6-10
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspRsfcoqhPres extends BaseBean implements Serializable {
  15. // 在建水利工程检查人员检查人员
  16. @ApiModelProperty(value = "在建水利工程检查人员检查人员", name = "chkPres")
  17. private String chkPres;
  18. // 检查时间
  19. @ApiModelProperty(value = "检查时间", name = "chkTm")
  20. private Date chkTm;
  21. // 防汛预案(度汛预案)是否编制
  22. @ApiModelProperty(value = "防汛预案(度汛预案)是否编制", name = "isMakPlan")
  23. private String isMakPlan;
  24. // 三个责任人是否公示
  25. @ApiModelProperty(value = "三个责任人是否公示", name = "isPubDuty")
  26. private String isPubDuty;
  27. // 汛限水位(米)
  28. @ApiModelProperty(value = "汛限水位(米)", name = "fsltdz")
  29. private Double fsltdz;
  30. // 汛限水位运行情况
  31. @ApiModelProperty(value = "汛限水位运行情况", name = "fsltdzRun")
  32. private String fsltdzRun;
  33. // 防汛物资是否储备
  34. @ApiModelProperty(value = "防汛物资是否储备", name = "isStore")
  35. private String isStore;
  36. // 是否有巡检记录
  37. @ApiModelProperty(value = "是否有巡检记录", name = "isChkLog")
  38. private String isChkLog;
  39. // 简易监测设备是否正常运行
  40. @ApiModelProperty(value = "简易监测设备是否正常运行", name = "isRunDvc")
  41. private String isRunDvc;
  42. // 不是在建水利工程检查人员
  43. @ApiModelProperty(value = "不是在建水利工程检查人员", name = "chkPres1")
  44. private String chkPres1;
  45. // 管理单位
  46. @ApiModelProperty(value = "管理单位", name = "govMang")
  47. private String govMang;
  48. // 完成时限
  49. @ApiModelProperty(value = "完成时限", name = "ackLimt")
  50. private String ackLimt;
  51. // 记录人员ID
  52. @ApiModelProperty(value = "记录人员ID", name = "persId")
  53. private String persId;
  54. // 创建时间
  55. @ApiModelProperty(value = "创建时间", name = "intm")
  56. private Date intm;
  57. // 最后修改时间
  58. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  59. private Date uptm;
  60. // 备注
  61. @ApiModelProperty(value = "备注", name = "note")
  62. private String note;
  63. // 数据状态(0:正常;9:删除)
  64. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  65. private String dataStat;
  66. // 主键ID
  67. @ApiModelProperty(value = "主键ID", name = "id")
  68. private String id;
  69. // 登记表ID
  70. @ApiModelProperty(value = "登记表ID", name = "rgstrId")
  71. private String rgstrId;
  72. // 是否在建水利工程
  73. @ApiModelProperty(value = "是否在建水利工程", name = "isBuld")
  74. private String isBuld;
  75. // 在建工程防汛责任人是否落实
  76. @ApiModelProperty(value = "在建工程防汛责任人是否落实", name = "isDuty")
  77. private String isDuty;
  78. // 度汛方案是否编制并报批
  79. @ApiModelProperty(value = "度汛方案是否编制并报批", name = "isPlanApp")
  80. private String isPlanApp;
  81. // 是否开展演练
  82. @ApiModelProperty(value = "是否开展演练", name = "isRhrs")
  83. private String isRhrs;
  84. // 是否落实汛期值班巡查人员
  85. @ApiModelProperty(value = "是否落实汛期值班巡查人员", name = "isDutyPres")
  86. private String isDutyPres;
  87. @ApiModelProperty("状态")
  88. private String state;
  89. public BisInspRsfcoqhPres() {
  90. }
  91. public String getState() {
  92. return state;
  93. }
  94. public void setState(String state) {
  95. this.state = state;
  96. }
  97. public String getChkPres() {
  98. return chkPres;
  99. }
  100. public void setChkPres(String chkPres) {
  101. this.chkPres = chkPres;
  102. }
  103. public Date getChkTm() {
  104. return chkTm;
  105. }
  106. public void setChkTm(Date chkTm) {
  107. this.chkTm = chkTm;
  108. }
  109. public String getIsMakPlan() {
  110. return isMakPlan;
  111. }
  112. public void setIsMakPlan(String isMakPlan) {
  113. this.isMakPlan = isMakPlan;
  114. }
  115. public String getIsPubDuty() {
  116. return isPubDuty;
  117. }
  118. public void setIsPubDuty(String isPubDuty) {
  119. this.isPubDuty = isPubDuty;
  120. }
  121. public Double getFsltdz() {
  122. return fsltdz;
  123. }
  124. public void setFsltdz(Double fsltdz) {
  125. this.fsltdz = fsltdz;
  126. }
  127. public String getFsltdzRun() {
  128. return fsltdzRun;
  129. }
  130. public void setFsltdzRun(String fsltdzRun) {
  131. this.fsltdzRun = fsltdzRun;
  132. }
  133. public String getIsStore() {
  134. return isStore;
  135. }
  136. public void setIsStore(String isStore) {
  137. this.isStore = isStore;
  138. }
  139. public String getIsChkLog() {
  140. return isChkLog;
  141. }
  142. public void setIsChkLog(String isChkLog) {
  143. this.isChkLog = isChkLog;
  144. }
  145. public String getIsRunDvc() {
  146. return isRunDvc;
  147. }
  148. public void setIsRunDvc(String isRunDvc) {
  149. this.isRunDvc = isRunDvc;
  150. }
  151. public String getChkPres1() {
  152. return chkPres1;
  153. }
  154. public void setChkPres1(String chkPres1) {
  155. this.chkPres1 = chkPres1;
  156. }
  157. public String getGovMang() {
  158. return govMang;
  159. }
  160. public void setGovMang(String govMang) {
  161. this.govMang = govMang;
  162. }
  163. public String getAckLimt() {
  164. return ackLimt;
  165. }
  166. public void setAckLimt(String ackLimt) {
  167. this.ackLimt = ackLimt;
  168. }
  169. public String getPersId() {
  170. return persId;
  171. }
  172. public void setPersId(String persId) {
  173. this.persId = persId;
  174. }
  175. public Date getIntm() {
  176. return intm;
  177. }
  178. public void setIntm(Date intm) {
  179. this.intm = intm;
  180. }
  181. public Date getUptm() {
  182. return uptm;
  183. }
  184. public void setUptm(Date uptm) {
  185. this.uptm = uptm;
  186. }
  187. public String getNote() {
  188. return note;
  189. }
  190. public void setNote(String note) {
  191. this.note = note;
  192. }
  193. public String getDataStat() {
  194. return dataStat;
  195. }
  196. public void setDataStat(String dataStat) {
  197. this.dataStat = dataStat;
  198. }
  199. public String getId() {
  200. return id;
  201. }
  202. public void setId(String id) {
  203. this.id = id;
  204. }
  205. public String getRgstrId() {
  206. return rgstrId;
  207. }
  208. public void setRgstrId(String rgstrId) {
  209. this.rgstrId = rgstrId;
  210. }
  211. public String getIsBuld() {
  212. return isBuld;
  213. }
  214. public void setIsBuld(String isBuld) {
  215. this.isBuld = isBuld;
  216. }
  217. public String getIsDuty() {
  218. return isDuty;
  219. }
  220. public void setIsDuty(String isDuty) {
  221. this.isDuty = isDuty;
  222. }
  223. public String getIsPlanApp() {
  224. return isPlanApp;
  225. }
  226. public void setIsPlanApp(String isPlanApp) {
  227. this.isPlanApp = isPlanApp;
  228. }
  229. public String getIsRhrs() {
  230. return isRhrs;
  231. }
  232. public void setIsRhrs(String isRhrs) {
  233. this.isRhrs = isRhrs;
  234. }
  235. public String getIsDutyPres() {
  236. return isDutyPres;
  237. }
  238. public void setIsDutyPres(String isDutyPres) {
  239. this.isDutyPres = isDutyPres;
  240. }
  241. @Override
  242. public String toString() {
  243. return "BisInspRsfcoqhPres [" + "chkPres=" + chkPres + ", chkTm=" + chkTm + ", isMakPlan=" + isMakPlan + ", isPubDuty=" + isPubDuty + ", fsltdz=" + fsltdz + ", fsltdzRun=" + fsltdzRun + ", isStore=" + isStore + ", isChkLog=" + isChkLog + ", isRunDvc=" + isRunDvc + ", chkPres1=" + chkPres1 + ", govMang=" + govMang + ", ackLimt=" + ackLimt + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + ", id=" + id + ", rgstrId=" + rgstrId + ", isBuld=" + isBuld + ", isDuty=" + isDuty + ", isPlanApp=" + isPlanApp + ", isRhrs=" + isRhrs + ", isDutyPres=" + isDutyPres + "]";
  244. }
  245. }