123456789101112131415161718192021222324252627282930313233 |
- package com.example.xiaoshiweixinback.entity.dto.patent;
- import lombok.Data;
- import java.util.List;
- @Data
- public class SelectPatentDTO {
- //是否全部导出
- private Boolean ifAllExport = false;
- //导出数量
- private Integer limitNum = 100;
- //爆款产品id
- private Integer productId;
- //关键词
- private String key;
- //图片描述
- private String description;
- //专利号
- private List<String> appNos;
- //申请国家
- private String appCountry;
- //权利人
- private String companyName;
- }
|