QuestionIndexVO.java 588 B

123456789101112131415161718192021222324252627
  1. package com.diagbot.vo;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. import java.util.List;
  5. /**
  6. * @Description:
  7. * @Author:zhoutg
  8. * @time: 2018/11/29 15:09
  9. */
  10. @Getter
  11. @Setter
  12. public class QuestionIndexVO {
  13. private String tagName;
  14. private Integer sexType;
  15. private Integer age;
  16. private Integer type;
  17. private List<Integer> controlType;
  18. private List<Integer> tagType;
  19. private List<Long> notIds;
  20. private String existName; //是否重复
  21. private List<Integer> notTagType;
  22. private List<Integer> notControlType;
  23. private List<String> filterList;
  24. }