005fc75dbdc3bb8ee87169334824b2dcd012f7b6.svn-base 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import cn.com.goldenwater.dcproj.dto.TacCountDto;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. import java.util.List;
  9. import java.util.Map;
  10. /**
  11. * entity:TacInspPersAreaPris
  12. *
  13. * @author lune
  14. * @date 2019-9-6
  15. */
  16. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  17. public class TacInspPersAreaPris extends BaseBean implements Serializable {
  18. @ApiModelProperty("规避前N年稽察")
  19. private Long avoidYrSize;
  20. @ApiModelProperty("同组相同工作地最大专家数")
  21. private Long siSaPersNum;
  22. @ApiModelProperty("同组女专家最大比例")
  23. private Double siNvPersNum;
  24. @ApiModelProperty("同组考核差专家最大数")
  25. private Long siBadPersNum;
  26. @ApiModelProperty("同组考核优秀专家最大数")
  27. private Long siGoodPersNum;
  28. @ApiModelProperty("主键")
  29. private String id;
  30. @ApiModelProperty("稽察年度批次ID")
  31. private String yearBatchId;
  32. @ApiModelProperty("年度")
  33. private Long year;
  34. @ApiModelProperty("批次")
  35. private Long batch;
  36. @ApiModelProperty("是否选择一般库(1:是;2:否)")
  37. private String isCommon;
  38. @ApiModelProperty("是否选择见习专家库(1:是;2:否)")
  39. private String isProbation;
  40. @ApiModelProperty("是否使用择优使用原则(1:是;2:否)")
  41. private String isPick;
  42. @ApiModelProperty("是否使用选择适合项目原则(1:是;2:否)")
  43. private String isFit;
  44. @ApiModelProperty("适合A类项目(1:是;2:否)")
  45. private String isA;
  46. @ApiModelProperty("适合B类项目(1:是;2:否)")
  47. private String isB;
  48. @ApiModelProperty("适合C类项目(1:是;2:否)")
  49. private String isC;
  50. @ApiModelProperty("适合D类项目(1:是;2:否)")
  51. private String isD;
  52. @ApiModelProperty("适合E类项目(1:是;2:否)")
  53. private String isE;
  54. @ApiModelProperty("是否使用新人适量原则")
  55. private Long isNew;
  56. @ApiModelProperty("新人适量原则--少于次数")
  57. private Long newSize;
  58. @ApiModelProperty("是否合理周期")
  59. private String isReason;
  60. @ApiModelProperty("规避前N批次")
  61. private Long avoidSize;
  62. @ApiModelProperty("是否地区回避")
  63. private String isArea;
  64. @ApiModelProperty("是否合理搭配原则")
  65. private String isPorc;
  66. @ApiModelProperty("创建人")
  67. private String persId;
  68. @ApiModelProperty("创建时间")
  69. private Date inTm;
  70. @ApiModelProperty("修改时间")
  71. private Date upTm;
  72. @ApiModelProperty("数据状态(0:正常;9:删除)")
  73. private String dataStat;
  74. @ApiModelProperty("一版库列表")
  75. private List<TacCountDto> commList;
  76. @ApiModelProperty("见习库列表")
  77. private List<TacCountDto> proList;
  78. @ApiModelProperty("金名单列表")
  79. private List<TacCountDto> goldList;
  80. @ApiModelProperty("红名单列表")
  81. private List<TacCountDto> redList;
  82. @ApiModelProperty("新人列表")
  83. private List<TacCountDto> newList;
  84. @ApiModelProperty("区域列表")
  85. private List<TacInspYearBatchArea> areaList;
  86. @ApiModelProperty("区域列表")
  87. private List<Map<String,String>> adNames;
  88. public TacInspPersAreaPris() {
  89. }
  90. public List<Map<String, String>> getAdNames() {
  91. return adNames;
  92. }
  93. public void setAdNames(List<Map<String, String>> adNames) {
  94. this.adNames = adNames;
  95. }
  96. public List<TacInspYearBatchArea> getAreaList() {
  97. return areaList;
  98. }
  99. public void setAreaList(List<TacInspYearBatchArea> areaList) {
  100. this.areaList = areaList;
  101. }
  102. public Long getAvoidYrSize() {
  103. return avoidYrSize;
  104. }
  105. public void setAvoidYrSize(Long avoidYrSize) {
  106. this.avoidYrSize = avoidYrSize;
  107. }
  108. public Long getSiSaPersNum() {
  109. return siSaPersNum;
  110. }
  111. public void setSiSaPersNum(Long siSaPersNum) {
  112. this.siSaPersNum = siSaPersNum;
  113. }
  114. public Double getSiNvPersNum() {
  115. return siNvPersNum;
  116. }
  117. public void setSiNvPersNum(Double siNvPersNum) {
  118. this.siNvPersNum = siNvPersNum;
  119. }
  120. public Long getSiBadPersNum() {
  121. return siBadPersNum;
  122. }
  123. public void setSiBadPersNum(Long siBadPersNum) {
  124. this.siBadPersNum = siBadPersNum;
  125. }
  126. public Long getSiGoodPersNum() {
  127. return siGoodPersNum;
  128. }
  129. public void setSiGoodPersNum(Long siGoodPersNum) {
  130. this.siGoodPersNum = siGoodPersNum;
  131. }
  132. public List<TacCountDto> getNewList() {
  133. return newList;
  134. }
  135. public void setNewList(List<TacCountDto> newList) {
  136. this.newList = newList;
  137. }
  138. public List<TacCountDto> getCommList() {
  139. return commList;
  140. }
  141. public void setCommList(List<TacCountDto> commList) {
  142. this.commList = commList;
  143. }
  144. public List<TacCountDto> getProList() {
  145. return proList;
  146. }
  147. public void setProList(List<TacCountDto> proList) {
  148. this.proList = proList;
  149. }
  150. public List<TacCountDto> getGoldList() {
  151. return goldList;
  152. }
  153. public void setGoldList(List<TacCountDto> goldList) {
  154. this.goldList = goldList;
  155. }
  156. public List<TacCountDto> getRedList() {
  157. return redList;
  158. }
  159. public void setRedList(List<TacCountDto> redList) {
  160. this.redList = redList;
  161. }
  162. public String getId() {
  163. return id;
  164. }
  165. public void setId(String id) {
  166. this.id = id;
  167. }
  168. public String getYearBatchId() {
  169. return yearBatchId;
  170. }
  171. public void setYearBatchId(String yearBatchId) {
  172. this.yearBatchId = yearBatchId;
  173. }
  174. public Long getYear() {
  175. return year;
  176. }
  177. public void setYear(Long year) {
  178. this.year = year;
  179. }
  180. public Long getBatch() {
  181. return batch;
  182. }
  183. public void setBatch(Long batch) {
  184. this.batch = batch;
  185. }
  186. public String getIsCommon() {
  187. return isCommon;
  188. }
  189. public void setIsCommon(String isCommon) {
  190. this.isCommon = isCommon;
  191. }
  192. public String getIsProbation() {
  193. return isProbation;
  194. }
  195. public void setIsProbation(String isProbation) {
  196. this.isProbation = isProbation;
  197. }
  198. public String getIsPick() {
  199. return isPick;
  200. }
  201. public void setIsPick(String isPick) {
  202. this.isPick = isPick;
  203. }
  204. public String getIsFit() {
  205. return isFit;
  206. }
  207. public void setIsFit(String isFit) {
  208. this.isFit = isFit;
  209. }
  210. public String getIsA() {
  211. return isA;
  212. }
  213. public void setIsA(String isA) {
  214. this.isA = isA;
  215. }
  216. public String getIsB() {
  217. return isB;
  218. }
  219. public void setIsB(String isB) {
  220. this.isB = isB;
  221. }
  222. public String getIsC() {
  223. return isC;
  224. }
  225. public void setIsC(String isC) {
  226. this.isC = isC;
  227. }
  228. public String getIsD() {
  229. return isD;
  230. }
  231. public void setIsD(String isD) {
  232. this.isD = isD;
  233. }
  234. public String getIsE() {
  235. return isE;
  236. }
  237. public void setIsE(String isE) {
  238. this.isE = isE;
  239. }
  240. public Long getIsNew() {
  241. return isNew;
  242. }
  243. public void setIsNew(Long isNew) {
  244. this.isNew = isNew;
  245. }
  246. public Long getNewSize() {
  247. return newSize;
  248. }
  249. public void setNewSize(Long newSize) {
  250. this.newSize = newSize;
  251. }
  252. public String getIsReason() {
  253. return isReason;
  254. }
  255. public void setIsReason(String isReason) {
  256. this.isReason = isReason;
  257. }
  258. public Long getAvoidSize() {
  259. return avoidSize;
  260. }
  261. public void setAvoidSize(Long avoidSize) {
  262. this.avoidSize = avoidSize;
  263. }
  264. public String getIsArea() {
  265. return isArea;
  266. }
  267. public void setIsArea(String isArea) {
  268. this.isArea = isArea;
  269. }
  270. public String getIsPorc() {
  271. return isPorc;
  272. }
  273. public void setIsPorc(String isPorc) {
  274. this.isPorc = isPorc;
  275. }
  276. public String getPersId() {
  277. return persId;
  278. }
  279. public void setPersId(String persId) {
  280. this.persId = persId;
  281. }
  282. public Date getInTm() {
  283. return inTm;
  284. }
  285. public void setInTm(Date inTm) {
  286. this.inTm = inTm;
  287. }
  288. public Date getUpTm() {
  289. return upTm;
  290. }
  291. public void setUpTm(Date upTm) {
  292. this.upTm = upTm;
  293. }
  294. public String getDataStat() {
  295. return dataStat;
  296. }
  297. public void setDataStat(String dataStat) {
  298. this.dataStat = dataStat;
  299. }
  300. @Override
  301. public String toString() {
  302. return "TacInspPersAreaPris [" + "id=" + id + ", yearBatchId=" + yearBatchId + ", year=" + year + ", batch=" + batch + ", isCommon=" + isCommon + ", isProbation=" + isProbation + ", isPick=" + isPick + ", isFit=" + isFit + ", isA=" + isA + ", isB=" + isB + ", isC=" + isC + ", isD=" + isD + ", isE=" + isE + ", isNew=" + isNew + ", newSize=" + newSize + ", isReason=" + isReason + ", avoidSize=" + avoidSize + ", isArea=" + isArea + ", isPorc=" + isPorc + ", persId=" + persId + ", inTm=" + inTm + ", upTm=" + upTm + ", dataStat=" + dataStat + "]";
  303. }
  304. }