houzhongjian
4 天以前 f4f9405f99cb35e2fd6cfeae4c54617304228fda
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.bpm.controller.admin.task.vo.task;
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 BpmTaskReturnReqVO {
11
12     @Schema(description = "任务编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
13     @NotEmpty(message = "任务编号不能为空")
14     private String id;
15
16     @Schema(description = "回退到的任务 Key", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
17     @NotEmpty(message = "回退到的任务 Key 不能为空")
18     private String targetTaskDefinitionKey;
19
20     @Schema(description = "回退意见", requiredMode = Schema.RequiredMode.REQUIRED, example = "我就是想驳回")
21     @NotEmpty(message = "回退意见不能为空")
22     private String reason;
23
24 }