123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package cn.cslg.pas.common.dto.business;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.util.Date;
- import java.util.List;
- /**
- * <p>
- * 专利挖掘DTO类
- * </p>
- *
- * @author 李仁杰
- * @since 2022-11-41
- */
- @Data
- /*数据库中的表对应的类
- */
- public class PatentDigProjectDTO {
- /**
- * 名称
- */
- private String name;
- /**
- * 研发项目
- */
- private Integer rdProjectId;
- private String headId;
- /**
- * 研发项目名称
- */
- private String rdName;
- /**
- * 研发项目编号
- */
- private String rdnumber;
- /**
- * 产品阶段
- */
- private String productPhase;
- /**
- * 产品
- */
- private String product;
- /**
- * 产出
- */
- private String output;
- /**
- * 技术方向
- */
- private String technicalDirection;
- /**
- * 是否检索
- */
- private Boolean ifSearch;
- /**
- * 相关竞争对手
- */
- private String relatedCompetitors;
- /**
- * 技术关键词
- */
- private String technicalKeyword;
- /**
- *进度
- */
- private String process;
- /**
- *状态
- */
- private Integer state;
- @Schema(description = "参与人id")
- private List<String> involvedPersonIds;
- @Schema(description = "描述")
- private String description;
- @Schema(description = "事件集合")
- private List<ProjectEventDTO> events;
- @Schema(description = "文件guids")
- private List<String> fileGuids;
- }
|