233ada28582a0fc47af9aeb76ed87ee7399fa4e9.svn-base 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspRsvrSdFcsParam
  9. *
  10. * @author lhc
  11. * @date 2022-3-14
  12. */
  13. public class BisInspRsvrSdFcsParam extends PageParam implements Serializable {
  14. // 主键ID
  15. @ApiParam(name = "主键ID")
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 督查登记ID
  19. @ApiParam(name = "督查登记ID")
  20. @ApiModelProperty(value = "督查登记ID", name = "rgstrId")
  21. private String rgstrId;
  22. // 1.是否含有雨水情测报设备
  23. @ApiParam(name = "1.是否含有雨水情测报设备")
  24. @ApiModelProperty(value = "1.是否含有雨水情测报设备", name = "isRain")
  25. private String isRain;
  26. // 2.设置的水位尺、水位标识是否满足观测需要
  27. @ApiParam(name = "2.设置的水位尺、水位标识是否满足观测需要")
  28. @ApiModelProperty(value = "2.设置的水位尺、水位标识是否满足观测需要", name = "isWtrSet")
  29. private String isWtrSet;
  30. // 3.是否含有有效的通信(报警)手段,满足汛期雨水情报送和紧急情况下报送预警信息的要求
  31. @ApiParam(name = "3.是否含有有效的通信(报警)手段,满足汛期雨水情报送和紧急情况下报送预警信息的要求")
  32. @ApiModelProperty(value = "3.是否含有有效的通信(报警)手段,满足汛期雨水情报送和紧急情况下报送预警信息的要求", name = "isTel")
  33. private String isTel;
  34. // 1.是否含有水库调度运用方案(调度计划)
  35. @ApiParam(name = "1.是否含有水库调度运用方案(调度计划)")
  36. @ApiModelProperty(value = "1.是否含有水库调度运用方案(调度计划)", name = "isRun")
  37. private String isRun;
  38. // 2.水库调度运用方案(调度计划)是否获得批复或备案
  39. @ApiParam(name = "2.水库调度运用方案(调度计划)是否获得批复或备案")
  40. @ApiModelProperty(value = "2.水库调度运用方案(调度计划)是否获得批复或备案", name = "isRunApp")
  41. private String isRunApp;
  42. // 3.水库调度运用方案(调度计划)可操作性是否较好
  43. @ApiParam(name = "3.水库调度运用方案(调度计划)可操作性是否较好")
  44. @ApiModelProperty(value = "3.水库调度运用方案(调度计划)可操作性是否较好", name = "isRunCtl")
  45. private String isRunCtl;
  46. // 1.是否编制安全管理(防汛)应急预案
  47. @ApiParam(name = "1.是否编制安全管理(防汛)应急预案")
  48. @ApiModelProperty(value = "1.是否编制安全管理(防汛)应急预案", name = "isPlanBuld")
  49. private String isPlanBuld;
  50. // 2.安全管理(防汛)应急预案是否获得批复或备案
  51. @ApiParam(name = "2.安全管理(防汛)应急预案是否获得批复或备案")
  52. @ApiModelProperty(value = "2.安全管理(防汛)应急预案是否获得批复或备案", name = "isPlanApp")
  53. private String isPlanApp;
  54. // 3.安全管理(防汛)应急预案可操作性是否较好
  55. @ApiParam(name = "3.安全管理(防汛)应急预案可操作性是否较好")
  56. @ApiModelProperty(value = "3.安全管理(防汛)应急预案可操作性是否较好", name = "isPlanCtr")
  57. private String isPlanCtr;
  58. // 4.是否按要求对安全管理(防汛)应急预案进行演练
  59. @ApiParam(name = "4.是否按要求对安全管理(防汛)应急预案进行演练")
  60. @ApiModelProperty(value = "4.是否按要求对安全管理(防汛)应急预案进行演练", name = "isPlanDry")
  61. private String isPlanDry;
  62. // 数据状态
  63. @ApiParam(name = "数据状态")
  64. @ApiModelProperty(value = "数据状态", name = "dataStat")
  65. private String dataStat;
  66. // 记录人员ID
  67. @ApiParam(name = "记录人员ID")
  68. @ApiModelProperty(value = "记录人员ID", name = "persId")
  69. private String persId;
  70. // 创建时间
  71. @ApiParam(name = "创建时间")
  72. @ApiModelProperty(value = "创建时间", name = "intm")
  73. private Date intm;
  74. // 最后修改时间
  75. @ApiParam(name = "最后修改时间")
  76. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  77. private Date uptm;
  78. // 备注
  79. @ApiParam(name = "备注")
  80. @ApiModelProperty(value = "备注", name = "note")
  81. private String note;
  82. public BisInspRsvrSdFcsParam() {
  83. }
  84. public String getId() {
  85. return id;
  86. }
  87. public void setId(String id) {
  88. this.id = id;
  89. }
  90. public String getRgstrId() {
  91. return rgstrId;
  92. }
  93. public void setRgstrId(String rgstrId) {
  94. this.rgstrId = rgstrId;
  95. }
  96. public String getIsRain() {
  97. return isRain;
  98. }
  99. public void setIsRain(String isRain) {
  100. this.isRain = isRain;
  101. }
  102. public String getIsWtrSet() {
  103. return isWtrSet;
  104. }
  105. public void setIsWtrSet(String isWtrSet) {
  106. this.isWtrSet = isWtrSet;
  107. }
  108. public String getIsTel() {
  109. return isTel;
  110. }
  111. public void setIsTel(String isTel) {
  112. this.isTel = isTel;
  113. }
  114. public String getIsRun() {
  115. return isRun;
  116. }
  117. public void setIsRun(String isRun) {
  118. this.isRun = isRun;
  119. }
  120. public String getIsRunApp() {
  121. return isRunApp;
  122. }
  123. public void setIsRunApp(String isRunApp) {
  124. this.isRunApp = isRunApp;
  125. }
  126. public String getIsRunCtl() {
  127. return isRunCtl;
  128. }
  129. public void setIsRunCtl(String isRunCtl) {
  130. this.isRunCtl = isRunCtl;
  131. }
  132. public String getIsPlanBuld() {
  133. return isPlanBuld;
  134. }
  135. public void setIsPlanBuld(String isPlanBuld) {
  136. this.isPlanBuld = isPlanBuld;
  137. }
  138. public String getIsPlanApp() {
  139. return isPlanApp;
  140. }
  141. public void setIsPlanApp(String isPlanApp) {
  142. this.isPlanApp = isPlanApp;
  143. }
  144. public String getIsPlanCtr() {
  145. return isPlanCtr;
  146. }
  147. public void setIsPlanCtr(String isPlanCtr) {
  148. this.isPlanCtr = isPlanCtr;
  149. }
  150. public String getIsPlanDry() {
  151. return isPlanDry;
  152. }
  153. public void setIsPlanDry(String isPlanDry) {
  154. this.isPlanDry = isPlanDry;
  155. }
  156. public String getDataStat() {
  157. return dataStat;
  158. }
  159. public void setDataStat(String dataStat) {
  160. this.dataStat = dataStat;
  161. }
  162. public String getPersId() {
  163. return persId;
  164. }
  165. public void setPersId(String persId) {
  166. this.persId = persId;
  167. }
  168. public Date getIntm() {
  169. return intm;
  170. }
  171. public void setIntm(Date intm) {
  172. this.intm = intm;
  173. }
  174. public Date getUptm() {
  175. return uptm;
  176. }
  177. public void setUptm(Date uptm) {
  178. this.uptm = uptm;
  179. }
  180. public String getNote() {
  181. return note;
  182. }
  183. public void setNote(String note) {
  184. this.note = note;
  185. }
  186. }