1234567891011121314151617181920212223242526272829303132333435363738 |
- package cn.cslg.pas.common.vo.business;
- import com.fasterxml.jackson.annotation.JsonProperty;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import lombok.experimental.Accessors;
- /**
- * @author lrj
- * @date 2022-11-11
- * @description 审核任务VO类
- */
- @Data
- @Accessors(chain = true)
- @Schema(description = "拆分VO类", required = true)
- public class SplitVO {
- @Schema(description = "专利号")
- private String patentNo;
- /**
- * 0仅拆主权要 1全部拆分
- */
- @Schema(description = "拆分类型")
- private Integer splitType;
- /**
- * 0逗号拆分 1分号拆分 2逗号和分号拆分
- */
- @Schema(description = "拆分形式")
- private Integer splitBy;
- @Schema(description = "是否重拆")
- private Boolean ifReSplit;
- @Schema(description = "报告Id")
- private Integer projectId;
- @Schema(description = "任务Id")
- private Integer taskId;
- }
|