提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.bpm.controller.admin.definition.vo.expression; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import javax.validation.constraints.NotEmpty; |
|
7 |
import javax.validation.constraints.NotNull; |
|
8 |
|
|
9 |
@Schema(description = "管理后台 - BPM 流程表达式新增/修改 Request VO") |
|
10 |
@Data |
|
11 |
public class BpmProcessExpressionSaveReqVO { |
|
12 |
|
|
13 |
@Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "3870") |
|
14 |
private Long id; |
|
15 |
|
|
16 |
@Schema(description = "表达式名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "李四") |
|
17 |
@NotEmpty(message = "表达式名字不能为空") |
|
18 |
private String name; |
|
19 |
|
|
20 |
@Schema(description = "表达式状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
|
21 |
@NotNull(message = "表达式状态不能为空") |
|
22 |
private Integer status; |
|
23 |
|
|
24 |
@Schema(description = "表达式", requiredMode = Schema.RequiredMode.REQUIRED) |
|
25 |
@NotEmpty(message = "表达式不能为空") |
|
26 |
private String expression; |
|
27 |
|
|
28 |
} |