WebQueryDTO.java 420 B

12345678910111213141516171819202122232425262728
  1. package com.example.demo.model.dto;
  2. import lombok.Data;
  3. @Data
  4. public class WebQueryDTO {
  5. /**
  6. * 专题库id
  7. */
  8. private Integer projectId;
  9. /**
  10. * 检索条件
  11. */
  12. private String conditions;
  13. /**
  14. * 专利网站id
  15. */
  16. private Integer webConfigId;
  17. /**
  18. * 任务id
  19. */
  20. private Integer taskId;
  21. /**
  22. * 报告id
  23. */
  24. private Integer reportId;
  25. }