dfbe1a333fdbb59839dc1501cfbc153449ee641e.svn-base 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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:BisInspRssfgdBase
  9. *
  10. * @author lhc
  11. * @date 2021-5-19
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspRssfgdBase 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 = "budDep")
  23. private String budDep;
  24. // 建设单位联系人
  25. @ApiModelProperty(value = "建设单位联系人", name = "budDepPers")
  26. private String budDepPers;
  27. // 建设单位联系电话
  28. @ApiModelProperty(value = "建设单位联系电话", name = "budDepPersTel")
  29. private String budDepPersTel;
  30. // 竣工验收主持单位
  31. @ApiModelProperty(value = "竣工验收主持单位", name = "comDep")
  32. private String comDep;
  33. // 竣工验收主持单位联系人
  34. @ApiModelProperty(value = "竣工验收主持单位联系人", name = "comDepPers")
  35. private String comDepPers;
  36. // 竣工验收主持单位联系电话
  37. @ApiModelProperty(value = "竣工验收主持单位联系电话", name = "comDepPersTel")
  38. private String comDepPersTel;
  39. // 检查日期
  40. @ApiModelProperty(value = "检查日期", name = "chkTm")
  41. private Date chkTm;
  42. // 整改期限
  43. @ApiModelProperty(value = "整改期限", name = "mendTm")
  44. private Date mendTm;
  45. // 检查单位
  46. @ApiModelProperty(value = "检查单位", name = "chkDep")
  47. private String chkDep;
  48. // 检查组成员
  49. @ApiModelProperty(value = "检查组成员", name = "chkDepPers")
  50. private String chkDepPers;
  51. // 批复的初设任务
  52. @ApiModelProperty(value = "批复的初设任务", name = "planTask")
  53. private String planTask;
  54. // 攻坚行动进展情况
  55. @ApiModelProperty(value = "攻坚行动进展情况", name = "actCase")
  56. private String actCase;
  57. // 记录人员ID
  58. @ApiModelProperty(value = "记录人员ID", name = "persId")
  59. private String persId;
  60. // 创建时间
  61. @ApiModelProperty(value = "创建时间", name = "intm")
  62. private Date intm;
  63. // 最后修改时间
  64. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  65. private Date uptm;
  66. // 备注
  67. @ApiModelProperty(value = "备注", name = "note")
  68. private String note;
  69. private String state;
  70. // 数据状态(0:正常;9:删除)
  71. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  72. private String dataStat;
  73. public BisInspRssfgdBase() {
  74. }
  75. public String getId() {
  76. return id;
  77. }
  78. public void setId(String id) {
  79. this.id = id;
  80. }
  81. public String getRgstrId() {
  82. return rgstrId;
  83. }
  84. public void setRgstrId(String rgstrId) {
  85. this.rgstrId = rgstrId;
  86. }
  87. public String getBudDep() {
  88. return budDep;
  89. }
  90. public void setBudDep(String budDep) {
  91. this.budDep = budDep;
  92. }
  93. public String getBudDepPers() {
  94. return budDepPers;
  95. }
  96. public void setBudDepPers(String budDepPers) {
  97. this.budDepPers = budDepPers;
  98. }
  99. public String getBudDepPersTel() {
  100. return budDepPersTel;
  101. }
  102. public void setBudDepPersTel(String budDepPersTel) {
  103. this.budDepPersTel = budDepPersTel;
  104. }
  105. public String getComDep() {
  106. return comDep;
  107. }
  108. public void setComDep(String comDep) {
  109. this.comDep = comDep;
  110. }
  111. public String getComDepPers() {
  112. return comDepPers;
  113. }
  114. public void setComDepPers(String comDepPers) {
  115. this.comDepPers = comDepPers;
  116. }
  117. public String getComDepPersTel() {
  118. return comDepPersTel;
  119. }
  120. public void setComDepPersTel(String comDepPersTel) {
  121. this.comDepPersTel = comDepPersTel;
  122. }
  123. public Date getChkTm() {
  124. return chkTm;
  125. }
  126. public void setChkTm(Date chkTm) {
  127. this.chkTm = chkTm;
  128. }
  129. public Date getMendTm() {
  130. return mendTm;
  131. }
  132. public void setMendTm(Date mendTm) {
  133. this.mendTm = mendTm;
  134. }
  135. public String getChkDep() {
  136. return chkDep;
  137. }
  138. public void setChkDep(String chkDep) {
  139. this.chkDep = chkDep;
  140. }
  141. public String getChkDepPers() {
  142. return chkDepPers;
  143. }
  144. public void setChkDepPers(String chkDepPers) {
  145. this.chkDepPers = chkDepPers;
  146. }
  147. public String getPlanTask() {
  148. return planTask;
  149. }
  150. public void setPlanTask(String planTask) {
  151. this.planTask = planTask;
  152. }
  153. public String getActCase() {
  154. return actCase;
  155. }
  156. public void setActCase(String actCase) {
  157. this.actCase = actCase;
  158. }
  159. public String getPersId() {
  160. return persId;
  161. }
  162. public void setPersId(String persId) {
  163. this.persId = persId;
  164. }
  165. public Date getIntm() {
  166. return intm;
  167. }
  168. public void setIntm(Date intm) {
  169. this.intm = intm;
  170. }
  171. public Date getUptm() {
  172. return uptm;
  173. }
  174. public void setUptm(Date uptm) {
  175. this.uptm = uptm;
  176. }
  177. public String getNote() {
  178. return note;
  179. }
  180. public void setNote(String note) {
  181. this.note = note;
  182. }
  183. public String getState() {
  184. return state;
  185. }
  186. public void setState(String state) {
  187. this.state = state;
  188. }
  189. public String getDataStat() {
  190. return dataStat;
  191. }
  192. public void setDataStat(String dataStat) {
  193. this.dataStat = dataStat;
  194. }
  195. @Override
  196. public String toString() {
  197. return "BisInspRssfgdBase [" + "id=" + id + ", rgstrId=" + rgstrId + ", budDep=" + budDep + ", budDepPers=" + budDepPers + ", budDepPersTel=" + budDepPersTel + ", comDep=" + comDep + ", comDepPers=" + comDepPers + ", comDepPersTel=" + comDepPersTel + ", chkTm=" + chkTm + ", mendTm=" + mendTm + ", chkDep=" + chkDep + ", chkDepPers=" + chkDepPers + ", planTask=" + planTask + ", actCase=" + actCase + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", state=" + state + ", dataStat=" + dataStat + "]";
  198. }
  199. }