提交 | 用户 | 时间
|
e7c126
|
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 BpmModelCreateReqVO { |
|
11 |
|
|
12 |
@Schema(description = "流程标识", requiredMode = Schema.RequiredMode.REQUIRED, example = "process_iailab") |
|
13 |
@NotEmpty(message = "流程标识不能为空") |
|
14 |
private String key; |
|
15 |
|
|
16 |
@Schema(description = "流程名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "平台") |
|
17 |
@NotEmpty(message = "流程名称不能为空") |
|
18 |
private String name; |
|
19 |
|
|
20 |
@Schema(description = "流程描述", example = "我是描述") |
|
21 |
private String description; |
|
22 |
|
|
23 |
} |