潘志宝
2024-12-03 51c1c2c9fa28fb1765dd6e81c70b78566792aebe
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.bpm.controller.admin.definition.vo.model;
H 2
3 import com.iailab.framework.common.pojo.PageParam;
4 import io.swagger.v3.oas.annotations.media.Schema;
5 import lombok.Data;
6
7
8 @Schema(description = "管理后台 - 流程模型分页 Request VO")
9 @Data
10 public class BpmModelPageReqVO extends PageParam {
11
12     @Schema(description = "标识,精准匹配", example = "process1641042089407")
13     private String key;
14
15     @Schema(description = "名字,模糊匹配", example = "平台")
16     private String name;
17
18     @Schema(description = "流程分类", example = "1")
19     private String category;
20
21 }