UserCvStatusReq.java 951 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.wechat.model.requestDto;
  2. import javax.validation.constraints.NotNull;
  3. import org.springframework.beans.factory.annotation.Value;
  4. /**
  5. * 简历切换
  6. *
  7. * @author jil
  8. *
  9. */
  10. public class UserCvStatusReq {
  11. private Integer index; // 当前页码
  12. @Value("#{configProperties['default.request.page.size']}")
  13. private Integer size = 15;
  14. // @NotNull(message = "不能为空|type not null")
  15. private String type; // 简历类型
  16. private String jobIdList; // 职位Id
  17. public Integer getIndex() {
  18. return index;
  19. }
  20. public void setIndex(Integer index) {
  21. this.index = index;
  22. }
  23. public Integer getSize() {
  24. return size;
  25. }
  26. public void setSize(Integer size) {
  27. this.size = size;
  28. }
  29. public String getType() {
  30. return type;
  31. }
  32. public void setType(String type) {
  33. this.type = type;
  34. }
  35. public String getJobIdList() {
  36. return jobIdList;
  37. }
  38. public void setJobIdList(String jobIdList) {
  39. this.jobIdList = jobIdList;
  40. }
  41. }