123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- package cn.cslg.pas.common.vo.business;
- import cn.cslg.pas.common.model.cronModel.SystemFile;
- import com.baomidou.mybatisplus.annotation.TableField;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import java.util.Date;
- import java.util.List;
- /**
- * <p>
- * 专利挖局ReportProjectVO类
- * </p>
- *
- * @author 李仁杰
- * @since 2022-11-10
- */
- @Data
- /*数据库中的表对应的类
- */
- public class PatentDigProjectVO {
- @Schema(description = "id")
- private Integer id;
- @Schema(description = "名称")
- private String name;
- @Schema(description = "负责人")
- private String headId;
- @Schema(description = "负责人名称")
- private String headName;
- /**
- * 产出
- */
- private String output;
- /**
- * 技术方向
- */
- private String technicalDirection;
- /**
- * 是否检索
- */
- private Boolean ifSearch;
- /**
- * 相关竞争对手
- */
- private String relatedCompetitors;
- /**
- * 技术关键词
- */
- private String technicalKeyword;
- /**
- *
- */
- private String process;
- /**
- *
- */
- private Integer state;
- /**
- * 委托类型(1客户,2部门)
- */
- @Schema(description = "委托类型(1客户,2部门)")
- private Integer entrustType;
- /**
- * 委托方id
- */
- @Schema(description = "委托方id")
- private String entrustId;
- /**
- * 委托方姓名
- */
- @Schema(description = "委托方姓名")
- private String entrustName;
- /**
- * 研发项目名称
- */
- private String rdName;
- /**
- * 研发项目编号
- */
- private String rdnumber;
- /**
- * 产品阶段
- */
- private String productPhase;
- /**
- * 产品
- */
- private String product;
- /**
- * 创建人
- */
- @Schema(description = "创建人")
- private String createId;
- /**
- * 创建人
- */
- @Schema(description = "创建人")
- private String createName;
- @Schema(description= "创建时间")
- private Date createTime;
- @Schema(description = "事件id")
- private List<Integer> eventIds;
- @Schema(description = "事件名称")
- private List<String> eventNames;
- @Schema(description = "处理事项id")
- private List<Integer> matterIds;
- @Schema(description = "处理事项名称")
- private List<String> matterNames;
- @Schema(description = "应用场景id")
- private List<Integer> scenarioIds;
- @Schema(description = "参与人")
- private List<SimplePersonVO> involvedPersons;
- @Schema(description = "应用场景名称")
- private List<String> scenarioNames;
- @Schema(description = "描述")
- private String description;
- @Schema(description = "文件信息")
- private List<SystemFile> systemFileList;
- }
|