|
@@ -5,6 +5,7 @@ import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
+import java.util.List;
|
|
|
|
|
|
@Schema(description = "管理后台 - 流程定义 Response VO")
|
|
|
@Data
|
|
@@ -19,7 +20,7 @@ public class BpmProcessDefinitionRespVO extends BpmModelMetaInfoVO {
|
|
|
@Schema(description = "流程名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道")
|
|
|
private String name;
|
|
|
|
|
|
- @Schema(description = "流程标识", requiredMode = Schema.RequiredMode.REQUIRED, example = "yudao")
|
|
|
+ @Schema(description = "流程标识", requiredMode = Schema.RequiredMode.REQUIRED, example = "easy-build")
|
|
|
private String key;
|
|
|
|
|
|
@Schema(description = "流程分类", example = "1")
|
|
@@ -27,15 +28,9 @@ public class BpmProcessDefinitionRespVO extends BpmModelMetaInfoVO {
|
|
|
@Schema(description = "流程分类名字", example = "请假")
|
|
|
private String categoryName;
|
|
|
|
|
|
- @Schema(description = "流程模型的编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "ABC")
|
|
|
- private String modelId;
|
|
|
-
|
|
|
@Schema(description = "流程模型的类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "10")
|
|
|
private Integer modelType; // 参见 BpmModelTypeEnum 枚举类
|
|
|
|
|
|
- @Schema(description = "表单名字", example = "请假表单")
|
|
|
- private String formName;
|
|
|
-
|
|
|
@Schema(description = "中断状态-参见 SuspensionState 枚举", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
|
private Integer suspensionState; // 参见 SuspensionState 枚举
|
|
|
|