de3d8a4f5999c21bf23acdac923fc875b7ef2bce.svn-base 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:BisInspRsvrSdDuty
  9. *
  10. * @author lhc
  11. * @date 2022-3-14
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspRsvrSdDuty extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 督查登记ID
  19. @ApiModelProperty(value = "督查登记ID", name = "rgstrId")
  20. private String rgstrId;
  21. // 是否落实行政责任人
  22. @ApiModelProperty(value = "是否落实行政责任人", name = "isAdmnDuty")
  23. private String isAdmnDuty;
  24. // 1.行政责任人是否参加过岗位培训
  25. @ApiModelProperty(value = "1.行政责任人是否参加过岗位培训", name = "isAdmnTrain")
  26. private String isAdmnTrain;
  27. // 2.行政责任人履责情况是否较好
  28. @ApiModelProperty(value = "2.行政责任人履责情况是否较好", name = "isAdmnFunc")
  29. private String isAdmnFunc;
  30. // 是否落实技术责任人
  31. @ApiModelProperty(value = "是否落实技术责任人", name = "isTchDuty")
  32. private String isTchDuty;
  33. // 1.技术责任人是否参加过岗位培训
  34. @ApiModelProperty(value = "1.技术责任人是否参加过岗位培训", name = "isTchTrain")
  35. private String isTchTrain;
  36. // 2.技术责任人履责情况是否较好
  37. @ApiModelProperty(value = "2.技术责任人履责情况是否较好", name = "isTchFunc")
  38. private String isTchFunc;
  39. // 是否落实巡查责任人
  40. @ApiModelProperty(value = "是否落实巡查责任人", name = "isChkDuty")
  41. private String isChkDuty;
  42. // 1.巡查责任人是否参加过岗位培训
  43. @ApiModelProperty(value = "1.巡查责任人是否参加过岗位培训", name = "isChkTrain")
  44. private String isChkTrain;
  45. // 2.巡查责任人履责情况是否较好
  46. @ApiModelProperty(value = "2.巡查责任人履责情况是否较好", name = "isChkFunc")
  47. private String isChkFunc;
  48. // 数据状态
  49. @ApiModelProperty(value = "数据状态", name = "dataStat")
  50. private String dataStat;
  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:未督查;1:督查中;2:已督查)
  64. @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", name = "state2")
  65. private String state;
  66. public String getState() {
  67. return state;
  68. }
  69. public void setState(String state) {
  70. this.state = state;
  71. }
  72. public BisInspRsvrSdDuty() {
  73. }
  74. public String getId() {
  75. return id;
  76. }
  77. public void setId(String id) {
  78. this.id = id;
  79. }
  80. public String getRgstrId() {
  81. return rgstrId;
  82. }
  83. public void setRgstrId(String rgstrId) {
  84. this.rgstrId = rgstrId;
  85. }
  86. public String getIsAdmnDuty() {
  87. return isAdmnDuty;
  88. }
  89. public void setIsAdmnDuty(String isAdmnDuty) {
  90. this.isAdmnDuty = isAdmnDuty;
  91. }
  92. public String getIsAdmnTrain() {
  93. return isAdmnTrain;
  94. }
  95. public void setIsAdmnTrain(String isAdmnTrain) {
  96. this.isAdmnTrain = isAdmnTrain;
  97. }
  98. public String getIsAdmnFunc() {
  99. return isAdmnFunc;
  100. }
  101. public void setIsAdmnFunc(String isAdmnFunc) {
  102. this.isAdmnFunc = isAdmnFunc;
  103. }
  104. public String getIsTchDuty() {
  105. return isTchDuty;
  106. }
  107. public void setIsTchDuty(String isTchDuty) {
  108. this.isTchDuty = isTchDuty;
  109. }
  110. public String getIsTchTrain() {
  111. return isTchTrain;
  112. }
  113. public void setIsTchTrain(String isTchTrain) {
  114. this.isTchTrain = isTchTrain;
  115. }
  116. public String getIsTchFunc() {
  117. return isTchFunc;
  118. }
  119. public void setIsTchFunc(String isTchFunc) {
  120. this.isTchFunc = isTchFunc;
  121. }
  122. public String getIsChkDuty() {
  123. return isChkDuty;
  124. }
  125. public void setIsChkDuty(String isChkDuty) {
  126. this.isChkDuty = isChkDuty;
  127. }
  128. public String getIsChkTrain() {
  129. return isChkTrain;
  130. }
  131. public void setIsChkTrain(String isChkTrain) {
  132. this.isChkTrain = isChkTrain;
  133. }
  134. public String getIsChkFunc() {
  135. return isChkFunc;
  136. }
  137. public void setIsChkFunc(String isChkFunc) {
  138. this.isChkFunc = isChkFunc;
  139. }
  140. public String getDataStat() {
  141. return dataStat;
  142. }
  143. public void setDataStat(String dataStat) {
  144. this.dataStat = dataStat;
  145. }
  146. public String getPersId() {
  147. return persId;
  148. }
  149. public void setPersId(String persId) {
  150. this.persId = persId;
  151. }
  152. public Date getIntm() {
  153. return intm;
  154. }
  155. public void setIntm(Date intm) {
  156. this.intm = intm;
  157. }
  158. public Date getUptm() {
  159. return uptm;
  160. }
  161. public void setUptm(Date uptm) {
  162. this.uptm = uptm;
  163. }
  164. public String getNote() {
  165. return note;
  166. }
  167. public void setNote(String note) {
  168. this.note = note;
  169. }
  170. @Override
  171. public String toString() {
  172. return "BisInspRsvrSdDuty [" + "id=" + id + ", rgstrId=" + rgstrId + ", isAdmnDuty=" + isAdmnDuty + ", isAdmnTrain=" + isAdmnTrain + ", isAdmnFunc=" + isAdmnFunc + ", isTchDuty=" + isTchDuty + ", isTchTrain=" + isTchTrain + ", isTchFunc=" + isTchFunc + ", isChkDuty=" + isChkDuty + ", isChkTrain=" + isChkTrain + ", isChkFunc=" + isChkFunc + ", dataStat=" + dataStat + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + "]";
  173. }
  174. }