提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.bpm.controller.admin.task.vo.instance; |
H |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageParam; |
|
4 |
import com.iailab.framework.common.validation.InEnum; |
|
5 |
import com.iailab.module.bpm.enums.task.BpmProcessInstanceStatusEnum; |
|
6 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
7 |
import lombok.Data; |
|
8 |
import org.springframework.format.annotation.DateTimeFormat; |
|
9 |
|
|
10 |
import java.time.LocalDateTime; |
|
11 |
|
|
12 |
import static com.iailab.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
|
13 |
|
bb2880
|
14 |
|
e7c126
|
15 |
@Schema(description = "管理后台 - 流程实例分页 Request VO") |
H |
16 |
@Data |
|
17 |
public class BpmProcessInstancePageReqVO extends PageParam { |
|
18 |
|
bb2880
|
19 |
@Schema(description = "流程名称", example = "芋道") |
e7c126
|
20 |
private String name; |
H |
21 |
|
bb2880
|
22 |
@Schema(description = "流程定义的标识", example = "2048") |
H |
23 |
private String processDefinitionKey; // 精准匹配 |
e7c126
|
24 |
|
H |
25 |
@Schema(description = "流程实例的状态", example = "1") |
|
26 |
@InEnum(BpmProcessInstanceStatusEnum.class) |
|
27 |
private Integer status; |
|
28 |
|
|
29 |
@Schema(description = "流程分类", example = "1") |
|
30 |
private String category; |
|
31 |
|
|
32 |
@Schema(description = "创建时间") |
|
33 |
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|
34 |
private LocalDateTime[] createTime; |
|
35 |
|
|
36 |
@Schema(description = "发起用户编号", example = "1024") |
|
37 |
private Long startUserId; // 注意,只有在【流程实例】菜单,才使用该参数 |
|
38 |
|
|
39 |
} |