提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.bpm.controller.admin.definition.vo.listener; |
H |
2 |
|
|
3 |
import com.iailab.framework.common.enums.CommonStatusEnum; |
|
4 |
import com.iailab.framework.common.pojo.PageParam; |
|
5 |
import com.iailab.framework.common.validation.InEnum; |
|
6 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
7 |
import lombok.Data; |
|
8 |
import lombok.EqualsAndHashCode; |
|
9 |
import lombok.ToString; |
|
10 |
|
|
11 |
@Schema(description = "管理后台 - BPM 流程监听器分页 Request VO") |
|
12 |
@Data |
|
13 |
@EqualsAndHashCode(callSuper = true) |
|
14 |
@ToString(callSuper = true) |
|
15 |
public class BpmProcessListenerPageReqVO extends PageParam { |
|
16 |
|
|
17 |
@Schema(description = "监听器名字", example = "赵六") |
|
18 |
private String name; |
|
19 |
|
|
20 |
@Schema(description = "监听器类型", example = "execution") |
|
21 |
private String type; |
|
22 |
|
|
23 |
@Schema(description = "监听事件", example = "start") |
|
24 |
private String event; |
|
25 |
|
|
26 |
@Schema(description = "状态", example = "1") |
|
27 |
@InEnum(CommonStatusEnum.class) |
|
28 |
private Integer status; |
|
29 |
|
|
30 |
} |