|
@@ -1,6 +1,8 @@
|
|
|
package cn.iocoder.yudao.module.bpm.controller.admin.definition.vo.listener;
|
|
|
|
|
|
+import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
|
|
+import cn.iocoder.yudao.framework.common.validation.InEnum;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
@@ -21,4 +23,8 @@ public class BpmProcessListenerPageReqVO extends PageParam {
|
|
|
@Schema(description = "监听事件", example = "start")
|
|
|
private String event;
|
|
|
|
|
|
+ @Schema(description = "状态", example = "1")
|
|
|
+ @InEnum(CommonStatusEnum.class)
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
}
|