12345678910111213141516171819202122232425262728 |
- package com.example.demo.model.dto;
- import lombok.Data;
- @Data
- public class WebQueryDTO {
- /**
- * 专题库id
- */
- private Integer projectId;
- /**
- * 检索条件
- */
- private String conditions;
- /**
- * 专利网站id
- */
- private Integer webConfigId;
- /**
- * 任务id
- */
- private Integer taskId;
- /**
- * 报告id
- */
- private Integer reportId;
- }
|