f31f67356dd2e49e1513c62db48a947b8ee207a4.svn-base 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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:BisInspPlanChk
  9. *
  10. * @author lhc
  11. * @date 2021-4-1
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspPlanChk extends BaseBean implements Serializable {
  15. // ID
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 年度
  19. @ApiModelProperty(value = "行政区划编码", name = "adCode")
  20. private String adCode;
  21. // 年度
  22. @ApiModelProperty(value = "年度", name = "chkYear")
  23. private Long chkYear;
  24. // 检查项目
  25. @ApiModelProperty(value = "检查项目", name = "chkItem")
  26. private String chkItem;
  27. // 监管事项
  28. @ApiModelProperty(value = "监管事项", name = "chkMatter")
  29. private String chkMatter;
  30. // 批次
  31. @ApiModelProperty(value = "批次", name = "chkBatch")
  32. private String chkBatch;
  33. // 计划时间
  34. @ApiModelProperty(value = "计划时间", name = "chkTm")
  35. private String chkTm;
  36. // 检查地区(市/州)
  37. @ApiModelProperty(value = "检查地区(市/州)", name = "chkCity")
  38. private String chkCity;
  39. // 检查县
  40. @ApiModelProperty(value = "检查县", name = "chkCounty")
  41. private String chkCounty;
  42. // 主要检查内容
  43. @ApiModelProperty(value = "主要检查内容", name = "chkContent")
  44. private String chkContent;
  45. // 支撑单位
  46. @ApiModelProperty(value = "支撑单位", name = "chkDep")
  47. private String chkDep;
  48. // 开展方式
  49. @ApiModelProperty(value = "开展方式", name = "chkType")
  50. private String chkType;
  51. // 创建人
  52. @ApiModelProperty(value = "创建人", 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. // 数据状态(0:正常;9:删除)
  61. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  62. private String dataStat;
  63. public String getAdCode() {
  64. return adCode;
  65. }
  66. public void setAdCode(String adCode) {
  67. this.adCode = adCode;
  68. }
  69. public String getId() {
  70. return id;
  71. }
  72. public void setId(String id) {
  73. this.id = id;
  74. }
  75. public Long getChkYear() {
  76. return chkYear;
  77. }
  78. public void setChkYear(Long chkYear) {
  79. this.chkYear = chkYear;
  80. }
  81. public String getChkItem() {
  82. return chkItem;
  83. }
  84. public void setChkItem(String chkItem) {
  85. this.chkItem = chkItem;
  86. }
  87. public String getChkMatter() {
  88. return chkMatter;
  89. }
  90. public void setChkMatter(String chkMatter) {
  91. this.chkMatter = chkMatter;
  92. }
  93. public String getChkBatch() {
  94. return chkBatch;
  95. }
  96. public void setChkBatch(String chkBatch) {
  97. this.chkBatch = chkBatch;
  98. }
  99. public String getChkTm() {
  100. return chkTm;
  101. }
  102. public void setChkTm(String chkTm) {
  103. this.chkTm = chkTm;
  104. }
  105. public String getChkCity() {
  106. return chkCity;
  107. }
  108. public void setChkCity(String chkCity) {
  109. this.chkCity = chkCity;
  110. }
  111. public String getChkCounty() {
  112. return chkCounty;
  113. }
  114. public void setChkCounty(String chkCounty) {
  115. this.chkCounty = chkCounty;
  116. }
  117. public String getChkContent() {
  118. return chkContent;
  119. }
  120. public void setChkContent(String chkContent) {
  121. this.chkContent = chkContent;
  122. }
  123. public String getChkDep() {
  124. return chkDep;
  125. }
  126. public void setChkDep(String chkDep) {
  127. this.chkDep = chkDep;
  128. }
  129. public String getChkType() {
  130. return chkType;
  131. }
  132. public void setChkType(String chkType) {
  133. this.chkType = chkType;
  134. }
  135. public String getPersId() {
  136. return persId;
  137. }
  138. public void setPersId(String persId) {
  139. this.persId = persId;
  140. }
  141. public Date getIntm() {
  142. return intm;
  143. }
  144. public void setIntm(Date intm) {
  145. this.intm = intm;
  146. }
  147. public Date getUptm() {
  148. return uptm;
  149. }
  150. public void setUptm(Date uptm) {
  151. this.uptm = uptm;
  152. }
  153. public String getDataStat() {
  154. return dataStat;
  155. }
  156. public void setDataStat(String dataStat) {
  157. this.dataStat = dataStat;
  158. }
  159. @Override
  160. public String toString() {
  161. return "BisInspPlanChk [" + "id=" + id + ", chkYear=" + chkYear + ", chkItem=" + chkItem + ", chkMatter=" + chkMatter + ", chkBatch=" + chkBatch + ", chkTm=" + chkTm + ", chkCity=" + chkCity + ", chkCounty=" + chkCounty + ", chkContent=" + chkContent + ", chkDep=" + chkDep + ", chkType=" + chkType + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  162. }
  163. }