GetSearchBiblioParamsDTO.java 650 B

123456789101112131415161718192021222324252627282930
  1. package com.example.demo.domain.dto;
  2. import lombok.Data;
  3. import lombok.experimental.Accessors;
  4. import java.io.Serializable;
  5. /**
  6. * 远程调用爬取欧专局,获取一批专利著录接口的DTO类
  7. *
  8. * @Author chenyu
  9. * @Date 2023/4/11
  10. */
  11. @Accessors(chain = true)
  12. @Data
  13. public class GetSearchBiblioParamsDTO implements Serializable {
  14. /**
  15. * 检索信息条件
  16. */
  17. private String query;
  18. /**
  19. * 起始专利数(1代表从第1个专利开始,注意不是页数)
  20. */
  21. private Integer start;
  22. /**
  23. * 最后专利数(10代表到第10个专利为止,注意不是页数)
  24. */
  25. private Integer end;
  26. }