b5ad4b9954ee7ece8c6ac95ebca6dc0b24a710c5.svn-base 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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. import java.util.List;
  8. import java.util.Map;
  9. /**
  10. * entity:TacInspYearBatchGroup
  11. *
  12. * @author lune
  13. * @date 2019-9-6
  14. */
  15. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  16. public class TacInspYearBatchGroup extends BaseBean implements Serializable {
  17. @ApiModelProperty("主键")
  18. private String id;
  19. @ApiModelProperty("稽察年度批次ID")
  20. private String yearBatchId;
  21. @ApiModelProperty("年度")
  22. private Long year;
  23. @ApiModelProperty("批次")
  24. private Long batch;
  25. @ApiModelProperty("组别")
  26. private Long groupNm;
  27. @ApiModelProperty("稽察内容")
  28. private String audContent;
  29. @ApiModelProperty("当前原则")
  30. private String tenet;
  31. @ApiModelProperty("是否测评")
  32. private String isAppraisal;
  33. @ApiModelProperty("检测单位")
  34. private String audUnits;
  35. @ApiModelProperty("稽察处别")
  36. private String audCategory;
  37. @ApiModelProperty("备注")
  38. private String remark;
  39. @ApiModelProperty("创建人")
  40. private String persId;
  41. @ApiModelProperty("创建时间")
  42. private Date inTm;
  43. @ApiModelProperty("修改时间")
  44. private Date upTm;
  45. @ApiModelProperty("数据状态(0:正常;9:删除)")
  46. private String dataStat;
  47. @ApiModelProperty("人员列表")
  48. private List<TacWorkerB> workersList;
  49. @ApiModelProperty("区域列表")
  50. private List<TacInspYearBatchArea> areaList;
  51. @ApiModelProperty("不符合原则")
  52. private String pris;
  53. @ApiModelProperty("区域列表")
  54. private List<Map<String,String>> adNames;
  55. @ApiModelProperty("选择对象列表")
  56. private String areas;
  57. @ApiModelProperty("稽察对象列表")
  58. private List<TacInspYearBatchObj> objList;
  59. @ApiModelProperty("人员列表")
  60. private String persNames;
  61. private String flag;
  62. @ApiModelProperty("稽察开始时间")
  63. private Date stTm;
  64. @ApiModelProperty("稽察结束时间")
  65. private Date enTm;
  66. @ApiModelProperty("固定分组人员")
  67. private String confirmer;
  68. public Date getStTm() {
  69. return stTm;
  70. }
  71. public void setStTm(Date stTm) {
  72. this.stTm = stTm;
  73. }
  74. public Date getEnTm() {
  75. return enTm;
  76. }
  77. public void setEnTm(Date enTm) {
  78. this.enTm = enTm;
  79. }
  80. public String getFlag() {
  81. return flag;
  82. }
  83. public void setFlag(String flag) {
  84. this.flag = flag;
  85. }
  86. public String getPersNames() {
  87. return persNames;
  88. }
  89. public void setPersNames(String persNames) {
  90. this.persNames = persNames;
  91. }
  92. public String getAreas() {
  93. return areas;
  94. }
  95. public List<TacInspYearBatchObj> getObjList() {
  96. return objList;
  97. }
  98. public void setObjList(List<TacInspYearBatchObj> objList) {
  99. this.objList = objList;
  100. }
  101. public void setAreas(String areas) {
  102. this.areas = areas;
  103. }
  104. public TacInspYearBatchGroup() {
  105. }
  106. public List<Map<String, String>> getAdNames() {
  107. return adNames;
  108. }
  109. public void setAdNames(List<Map<String, String>> adNames) {
  110. this.adNames = adNames;
  111. }
  112. public String getPris() {
  113. return pris;
  114. }
  115. public void setPris(String pris) {
  116. this.pris = pris;
  117. }
  118. public List<TacInspYearBatchArea> getAreaList() {
  119. return areaList;
  120. }
  121. public void setAreaList(List<TacInspYearBatchArea> areaList) {
  122. this.areaList = areaList;
  123. }
  124. public List<TacWorkerB> getWorkersList() {
  125. return workersList;
  126. }
  127. public void setWorkersList(List<TacWorkerB> workersList) {
  128. this.workersList = workersList;
  129. }
  130. public String getId() {
  131. return id;
  132. }
  133. public void setId(String id) {
  134. this.id = id;
  135. }
  136. public String getYearBatchId() {
  137. return yearBatchId;
  138. }
  139. public void setYearBatchId(String yearBatchId) {
  140. this.yearBatchId = yearBatchId;
  141. }
  142. public Long getYear() {
  143. return year;
  144. }
  145. public void setYear(Long year) {
  146. this.year = year;
  147. }
  148. public Long getBatch() {
  149. return batch;
  150. }
  151. public void setBatch(Long batch) {
  152. this.batch = batch;
  153. }
  154. public Long getGroupNm() {
  155. return groupNm;
  156. }
  157. public void setGroupNm(Long groupNm) {
  158. this.groupNm = groupNm;
  159. }
  160. public String getAudContent() {
  161. return audContent;
  162. }
  163. public void setAudContent(String audContent) {
  164. this.audContent = audContent;
  165. }
  166. public String getTenet() {
  167. return tenet;
  168. }
  169. public void setTenet(String tenet) {
  170. this.tenet = tenet;
  171. }
  172. public String getIsAppraisal() {
  173. return isAppraisal;
  174. }
  175. public void setIsAppraisal(String isAppraisal) {
  176. this.isAppraisal = isAppraisal;
  177. }
  178. public String getAudUnits() {
  179. return audUnits;
  180. }
  181. public void setAudUnits(String audUnits) {
  182. this.audUnits = audUnits;
  183. }
  184. public String getAudCategory() {
  185. return audCategory;
  186. }
  187. public void setAudCategory(String audCategory) {
  188. this.audCategory = audCategory;
  189. }
  190. public String getRemark() {
  191. return remark;
  192. }
  193. public void setRemark(String remark) {
  194. this.remark = remark;
  195. }
  196. public String getPersId() {
  197. return persId;
  198. }
  199. public void setPersId(String persId) {
  200. this.persId = persId;
  201. }
  202. public Date getInTm() {
  203. return inTm;
  204. }
  205. public void setInTm(Date inTm) {
  206. this.inTm = inTm;
  207. }
  208. public Date getUpTm() {
  209. return upTm;
  210. }
  211. public void setUpTm(Date upTm) {
  212. this.upTm = upTm;
  213. }
  214. public String getDataStat() {
  215. return dataStat;
  216. }
  217. public void setDataStat(String dataStat) {
  218. this.dataStat = dataStat;
  219. }
  220. public String getConfirmer() {
  221. return confirmer;
  222. }
  223. public void setConfirmer(String confirmer) {
  224. this.confirmer = confirmer;
  225. }
  226. @Override
  227. public String toString() {
  228. return "TacInspYearBatchGroup [" + "id=" + id + ", yearBatchId=" + yearBatchId + ", year=" + year + ", batch=" + batch + ", groupNm=" + groupNm + ", audContent=" + audContent + ", tenet=" + tenet + ", isAppraisal=" + isAppraisal + ", audUnits=" + audUnits + ", audCategory=" + audCategory + ", remark=" + remark + ", persId=" + persId + ", inTm=" + inTm + ", upTm=" + upTm + ", dataStat=" + dataStat + "]";
  229. }
  230. }