dongyukun
9 天以前 5f653cd83425db29ccf514e9fd966a90c7eeab32
提交 | 用户 | 时间
bb2880 1 package com.iailab.module.bpm.controller.admin.definition.vo.model;
H 2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 import javax.validation.constraints.NotEmpty;
7
8 @Schema(description = "管理后台 - 流程模型的保存 Request VO")
9 @Data
10 public class BpmModelSaveReqVO extends BpmModelMetaInfoVO {
11
12     @Schema(description = "编号", example = "1024")
13     private String id;
14
15     @Schema(description = "流程标识", requiredMode = Schema.RequiredMode.REQUIRED, example = "process_yudao")
16     @NotEmpty(message = "流程标识不能为空")
17     private String key;
18
19     @Schema(description = "流程名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道")
20     @NotEmpty(message = "流程名称不能为空")
21     private String name;
22
23     @Schema(description = "流程分类", example = "1")
24     private String category;
25
26 }