SelectPatentDTO.java 561 B

123456789101112131415161718192021222324252627282930313233
  1. package com.example.xiaoshiweixinback.entity.dto.patent;
  2. import lombok.Data;
  3. import java.util.List;
  4. @Data
  5. public class SelectPatentDTO {
  6. //是否全部导出
  7. private Boolean ifAllExport = false;
  8. //导出数量
  9. private Integer limitNum = 100;
  10. //爆款产品id
  11. private Integer productId;
  12. //关键词
  13. private String key;
  14. //图片描述
  15. private String description;
  16. //专利号
  17. private List<String> appNos;
  18. //申请国家
  19. private String appCountry;
  20. //权利人
  21. private String companyName;
  22. }