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