潘志宝
5 天以前 2780e6717df31ee605dd8ce525afcb43914ca2de
提交 | 用户 | 时间
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 = "管理后台 - 流程模型的更新 BPMN XML Request VO")
9 @Data
10 public class BpmModeUpdateBpmnReqVO {
11
12     @Schema(description = "流程编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
13     @NotEmpty(message = "流程编号不能为空")
14     private String id;
15
16     @Schema(description = "BPMN XML", requiredMode = Schema.RequiredMode.REQUIRED)
17     @NotEmpty(message = "BPMN XML 不能为空")
18     private String bpmnXml;
19
20 }