fafdd1294775c539f7796b045811d6a04091972a.svn-base 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import cn.com.goldenwater.core.model.BaseBean;
  6. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  7. /**
  8. * entity:BisInspRsmlRgstrPres
  9. *
  10. * @author lune
  11. * @date 2020-3-9
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspRsmlRgstrPres extends BaseBean implements Serializable {
  15. @ApiModelProperty("主键ID")
  16. private String id;
  17. @ApiModelProperty("水库督查登记ID")
  18. private String rgstrId;
  19. @ApiModelProperty("是否明确三个责任人(1:是;2:否)")
  20. private String isClearPers;
  21. @ApiModelProperty("行政责任人姓名")
  22. private String wiunWaoLegPers;
  23. @ApiModelProperty("行政责任人电话")
  24. private String wiunWaoLegPersTel;
  25. @ApiModelProperty("行政责任人职务")
  26. private String wiunWaoLegPersDuty;
  27. @ApiModelProperty("技术责任人姓名")
  28. private String techPers;
  29. @ApiModelProperty("技术责任人电话")
  30. private String techPersTel;
  31. @ApiModelProperty("技术责任人职务")
  32. private String techPersDuty;
  33. @ApiModelProperty("巡查责任人姓名")
  34. private String patrolPers;
  35. @ApiModelProperty("巡查责任人电话")
  36. private String patrolPersTel;
  37. @ApiModelProperty("巡查责任人职务")
  38. private String patrolPersDuty;
  39. @ApiModelProperty("是否设立标识牌(1:是;2:否)")
  40. private String isSetCard;
  41. @ApiModelProperty("三个责任人履职情况(1:好;2:基本到位;3:差)")
  42. private String persResu;
  43. @ApiModelProperty("记录人员ID")
  44. private String recPersId;
  45. @ApiModelProperty("记录人员")
  46. private String recPers2;
  47. @ApiModelProperty("记录人员电话")
  48. private String recPersTel;
  49. @ApiModelProperty("创建时间")
  50. private Date intm;
  51. @ApiModelProperty("修改时间")
  52. private Date uptm;
  53. @ApiModelProperty("填报状态(0:未填报;1:填报中;2:已填报)")
  54. private String status;
  55. public BisInspRsmlRgstrPres() {
  56. }
  57. public String getId() {
  58. return id;
  59. }
  60. public void setId(String id) {
  61. this.id = id;
  62. }
  63. @Override
  64. public String getRgstrId() {
  65. return rgstrId;
  66. }
  67. @Override
  68. public void setRgstrId(String rgstrId) {
  69. this.rgstrId = rgstrId;
  70. }
  71. public String getIsClearPers() {
  72. return isClearPers;
  73. }
  74. public void setIsClearPers(String isClearPers) {
  75. this.isClearPers = isClearPers;
  76. }
  77. public String getWiunWaoLegPers() {
  78. return wiunWaoLegPers;
  79. }
  80. public void setWiunWaoLegPers(String wiunWaoLegPers) {
  81. this.wiunWaoLegPers = wiunWaoLegPers;
  82. }
  83. public String getWiunWaoLegPersTel() {
  84. return wiunWaoLegPersTel;
  85. }
  86. public void setWiunWaoLegPersTel(String wiunWaoLegPersTel) {
  87. this.wiunWaoLegPersTel = wiunWaoLegPersTel;
  88. }
  89. public String getWiunWaoLegPersDuty() {
  90. return wiunWaoLegPersDuty;
  91. }
  92. public void setWiunWaoLegPersDuty(String wiunWaoLegPersDuty) {
  93. this.wiunWaoLegPersDuty = wiunWaoLegPersDuty;
  94. }
  95. public String getTechPers() {
  96. return techPers;
  97. }
  98. public void setTechPers(String techPers) {
  99. this.techPers = techPers;
  100. }
  101. public String getTechPersTel() {
  102. return techPersTel;
  103. }
  104. public void setTechPersTel(String techPersTel) {
  105. this.techPersTel = techPersTel;
  106. }
  107. public String getTechPersDuty() {
  108. return techPersDuty;
  109. }
  110. public void setTechPersDuty(String techPersDuty) {
  111. this.techPersDuty = techPersDuty;
  112. }
  113. public String getPatrolPers() {
  114. return patrolPers;
  115. }
  116. public void setPatrolPers(String patrolPers) {
  117. this.patrolPers = patrolPers;
  118. }
  119. public String getPatrolPersTel() {
  120. return patrolPersTel;
  121. }
  122. public void setPatrolPersTel(String patrolPersTel) {
  123. this.patrolPersTel = patrolPersTel;
  124. }
  125. public String getPatrolPersDuty() {
  126. return patrolPersDuty;
  127. }
  128. public void setPatrolPersDuty(String patrolPersDuty) {
  129. this.patrolPersDuty = patrolPersDuty;
  130. }
  131. public String getIsSetCard() {
  132. return isSetCard;
  133. }
  134. public void setIsSetCard(String isSetCard) {
  135. this.isSetCard = isSetCard;
  136. }
  137. public String getPersResu() {
  138. return persResu;
  139. }
  140. public void setPersResu(String persResu) {
  141. this.persResu = persResu;
  142. }
  143. public String getRecPersId() {
  144. return recPersId;
  145. }
  146. public void setRecPersId(String recPersId) {
  147. this.recPersId = recPersId;
  148. }
  149. public String getRecPers2() {
  150. return recPers2;
  151. }
  152. public void setRecPers2(String recPers2) {
  153. this.recPers2 = recPers2;
  154. }
  155. public String getRecPersTel() {
  156. return recPersTel;
  157. }
  158. public void setRecPersTel(String recPersTel) {
  159. this.recPersTel = recPersTel;
  160. }
  161. public Date getIntm() {
  162. return intm;
  163. }
  164. public void setIntm(Date intm) {
  165. this.intm = intm;
  166. }
  167. public Date getUptm() {
  168. return uptm;
  169. }
  170. public void setUptm(Date uptm) {
  171. this.uptm = uptm;
  172. }
  173. public String getStatus() {
  174. return status;
  175. }
  176. public void setStatus(String status) {
  177. this.status = status;
  178. }
  179. @Override
  180. public String toString() {
  181. return "BisInspRsmlRgstrPres [" + "id=" + id + ", rgstrId=" + rgstrId + ", isClearPers=" + isClearPers + ", wiunWaoLegPers=" + wiunWaoLegPers + ", wiunWaoLegPersTel=" + wiunWaoLegPersTel + ", wiunWaoLegPersDuty=" + wiunWaoLegPersDuty + ", techPers=" + techPers + ", techPersTel=" + techPersTel + ", techPersDuty=" + techPersDuty + ", patrolPers=" + patrolPers + ", patrolPersTel=" + patrolPersTel + ", patrolPersDuty=" + patrolPersDuty + ", isSetCard=" + isSetCard + ", persResu=" + persResu + ", recPersId=" + recPersId + ", recPers2=" + recPers2 + ", recPersTel=" + recPersTel + ", intm=" + intm + ", uptm=" + uptm + ", status=" + status + "]";
  182. }
  183. }