123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- 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 org.joda.time.DateTime;
- import java.util.Date;
- import java.util.List;
- /**
- * <p>
- * 专题库DTO类
- * </p>
- *
- * @author 李仁杰
- * @since 2022-10-2
- */
- @Data
- /*数据库中的表对应的类
- */
- public class PatentProjectVO {
- @Schema(description = "id")
- private String id;
- @Schema(description = "名称")
- private String name;
- /**
- * 委托类型(1客户,2部门)
- */
- @Schema(description = "委托类型(1客户,2部门)")
- private Integer entrustType;
- /**
- * 委托方id
- */
- @Schema(description = "委托方id")
- private Integer entrustId;
- /**
- * 委托方姓名
- */
- @Schema(description = "委托方姓名")
- private Integer entrustName;
- /**
- * 负责人id
- */
- @Schema(description = "head_id")
- private Integer headId;
- /**
- * 负责人名称
- */
- @Schema(description = "负责人名称")
- private Integer headName;
- /**
- * 负责部门id
- */
- @Schema(description = "负责部门id")
- private Integer departmentId;
- /**
- * 负责部门名称
- */
- @Schema(description = "负责部门名称")
- private Integer departmentName;
- /**
- * 项目类型(1专题库 2报告 3专利挖掘项目)
- */
- @Schema(description = "type")
- private Integer type;
- /**
- * 合同号
- */
- @Schema(description = "合同号")
- private String contractNo;
- /**
- * 内部卷号
- */
- @Schema(description = "内部卷号")
- private String volumeNumber;
- /**
- * 委案日
- */
- @Schema(description = "委案日")
- private String commissionCaseDay;
- /**
- * 描述
- */
- @Schema(description = "描述")
- private String description;
- /**
- * 所属租户
- */
- @Schema(description = "所属租户")
- private Integer tenantId;
- /**
- * 是否更新
- */
- @TableField(value = "if_update")
- private Boolean ifUpdate;
- /**
- * 更新周期
- */
- private String crons;
- /**
- * 创建人
- */
- @Schema(description = "创建人")
- private String createId;
- @Schema(description= "创建时间")
- private DateTime createTime;
- }
|