d1fd2a633ebf70dc7d2f5ff7d6309505bda9a497.svn-base 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. * BisInspRsvrSdDutyParam
  9. *
  10. * @author lhc
  11. * @date 2022-3-14
  12. */
  13. public class BisInspRsvrSdDutyParam 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. // 是否落实行政责任人
  23. @ApiParam(name = "是否落实行政责任人")
  24. @ApiModelProperty(value = "是否落实行政责任人", name = "isAdmnDuty")
  25. private String isAdmnDuty;
  26. // 1.行政责任人是否参加过岗位培训
  27. @ApiParam(name = "1.行政责任人是否参加过岗位培训")
  28. @ApiModelProperty(value = "1.行政责任人是否参加过岗位培训", name = "isAdmnTrain")
  29. private String isAdmnTrain;
  30. // 2.行政责任人履责情况是否较好
  31. @ApiParam(name = "2.行政责任人履责情况是否较好")
  32. @ApiModelProperty(value = "2.行政责任人履责情况是否较好", name = "isAdmnFunc")
  33. private String isAdmnFunc;
  34. // 是否落实技术责任人
  35. @ApiParam(name = "是否落实技术责任人")
  36. @ApiModelProperty(value = "是否落实技术责任人", name = "isTchDuty")
  37. private String isTchDuty;
  38. // 1.技术责任人是否参加过岗位培训
  39. @ApiParam(name = "1.技术责任人是否参加过岗位培训")
  40. @ApiModelProperty(value = "1.技术责任人是否参加过岗位培训", name = "isTchTrain")
  41. private String isTchTrain;
  42. // 2.技术责任人履责情况是否较好
  43. @ApiParam(name = "2.技术责任人履责情况是否较好")
  44. @ApiModelProperty(value = "2.技术责任人履责情况是否较好", name = "isTchFunc")
  45. private String isTchFunc;
  46. // 是否落实巡查责任人
  47. @ApiParam(name = "是否落实巡查责任人")
  48. @ApiModelProperty(value = "是否落实巡查责任人", name = "isChkDuty")
  49. private String isChkDuty;
  50. // 1.巡查责任人是否参加过岗位培训
  51. @ApiParam(name = "1.巡查责任人是否参加过岗位培训")
  52. @ApiModelProperty(value = "1.巡查责任人是否参加过岗位培训", name = "isChkTrain")
  53. private String isChkTrain;
  54. // 2.巡查责任人履责情况是否较好
  55. @ApiParam(name = "2.巡查责任人履责情况是否较好")
  56. @ApiModelProperty(value = "2.巡查责任人履责情况是否较好", name = "isChkFunc")
  57. private String isChkFunc;
  58. // 数据状态
  59. @ApiParam(name = "数据状态")
  60. @ApiModelProperty(value = "数据状态", name = "dataStat")
  61. private String dataStat;
  62. // 记录人员ID
  63. @ApiParam(name = "记录人员ID")
  64. @ApiModelProperty(value = "记录人员ID", name = "persId")
  65. private String persId;
  66. // 创建时间
  67. @ApiParam(name = "创建时间")
  68. @ApiModelProperty(value = "创建时间", name = "intm")
  69. private Date intm;
  70. // 最后修改时间
  71. @ApiParam(name = "最后修改时间")
  72. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  73. private Date uptm;
  74. // 备注
  75. @ApiParam(name = "备注")
  76. @ApiModelProperty(value = "备注", name = "note")
  77. private String note;
  78. public BisInspRsvrSdDutyParam() {
  79. }
  80. public String getId() {
  81. return id;
  82. }
  83. public void setId(String id) {
  84. this.id = id;
  85. }
  86. public String getRgstrId() {
  87. return rgstrId;
  88. }
  89. public void setRgstrId(String rgstrId) {
  90. this.rgstrId = rgstrId;
  91. }
  92. public String getIsAdmnDuty() {
  93. return isAdmnDuty;
  94. }
  95. public void setIsAdmnDuty(String isAdmnDuty) {
  96. this.isAdmnDuty = isAdmnDuty;
  97. }
  98. public String getIsAdmnTrain() {
  99. return isAdmnTrain;
  100. }
  101. public void setIsAdmnTrain(String isAdmnTrain) {
  102. this.isAdmnTrain = isAdmnTrain;
  103. }
  104. public String getIsAdmnFunc() {
  105. return isAdmnFunc;
  106. }
  107. public void setIsAdmnFunc(String isAdmnFunc) {
  108. this.isAdmnFunc = isAdmnFunc;
  109. }
  110. public String getIsTchDuty() {
  111. return isTchDuty;
  112. }
  113. public void setIsTchDuty(String isTchDuty) {
  114. this.isTchDuty = isTchDuty;
  115. }
  116. public String getIsTchTrain() {
  117. return isTchTrain;
  118. }
  119. public void setIsTchTrain(String isTchTrain) {
  120. this.isTchTrain = isTchTrain;
  121. }
  122. public String getIsTchFunc() {
  123. return isTchFunc;
  124. }
  125. public void setIsTchFunc(String isTchFunc) {
  126. this.isTchFunc = isTchFunc;
  127. }
  128. public String getIsChkDuty() {
  129. return isChkDuty;
  130. }
  131. public void setIsChkDuty(String isChkDuty) {
  132. this.isChkDuty = isChkDuty;
  133. }
  134. public String getIsChkTrain() {
  135. return isChkTrain;
  136. }
  137. public void setIsChkTrain(String isChkTrain) {
  138. this.isChkTrain = isChkTrain;
  139. }
  140. public String getIsChkFunc() {
  141. return isChkFunc;
  142. }
  143. public void setIsChkFunc(String isChkFunc) {
  144. this.isChkFunc = isChkFunc;
  145. }
  146. public String getDataStat() {
  147. return dataStat;
  148. }
  149. public void setDataStat(String dataStat) {
  150. this.dataStat = dataStat;
  151. }
  152. public String getPersId() {
  153. return persId;
  154. }
  155. public void setPersId(String persId) {
  156. this.persId = persId;
  157. }
  158. public Date getIntm() {
  159. return intm;
  160. }
  161. public void setIntm(Date intm) {
  162. this.intm = intm;
  163. }
  164. public Date getUptm() {
  165. return uptm;
  166. }
  167. public void setUptm(Date uptm) {
  168. this.uptm = uptm;
  169. }
  170. public String getNote() {
  171. return note;
  172. }
  173. public void setNote(String note) {
  174. this.note = note;
  175. }
  176. }