| | |
| | | package com.iailab.module.bpm.controller.admin.definition.vo.model; |
| | | |
| | | import com.iailab.module.bpm.controller.admin.definition.vo.model.simple.BpmSimpleModelNodeVO; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.Valid; |
| | | import javax.validation.constraints.NotEmpty; |
| | | |
| | | @Schema(description = "管理后台 - 流程模型的保存 Request VO") |
| | |
| | | @Schema(description = "流程分类", example = "1") |
| | | private String category; |
| | | |
| | | @Schema(description = "BPMN XML") |
| | | private String bpmnXml; |
| | | |
| | | @Schema(description = "仿钉钉流程设计模型对象") |
| | | @Valid |
| | | private BpmSimpleModelNodeVO simpleModel; |
| | | |
| | | } |