dengzedong
2024-12-24 aa0382e44311f9f7e62a688c8fcaa9c69a512e0f
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.bpm.controller.admin.task.vo.instance;
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 BpmProcessInstanceCancelReqVO {
11
12     @Schema(description = "流程实例的编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
13     @NotEmpty(message = "流程实例的编号不能为空")
14     private String id;
15
16     @Schema(description = "取消原因", requiredMode = Schema.RequiredMode.REQUIRED, example = "不请假了!")
17     @NotEmpty(message = "取消原因不能为空")
18     private String reason;
19
20 }