liriming
2024-12-05 a99834962622f6ca8a7f5e4e42581d35d6f59f8a
提交 | 用户 | 时间
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
14 @Schema(description = "管理后台 - 流程实例分页 Request VO")
15 @Data
16 public class BpmProcessInstancePageReqVO extends PageParam {
17
18     @Schema(description = "流程名称", example = "平台")
19     private String name;
20
21     @Schema(description = "流程定义的编号", example = "2048")
22     private String processDefinitionId;
23
24     @Schema(description = "流程实例的状态", example = "1")
25     @InEnum(BpmProcessInstanceStatusEnum.class)
26     private Integer status;
27
28     @Schema(description = "流程分类", example = "1")
29     private String category;
30
31     @Schema(description = "创建时间")
32     @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
33     private LocalDateTime[] createTime;
34
35     @Schema(description = "发起用户编号", example = "1024")
36     private Long startUserId; // 注意,只有在【流程实例】菜单,才使用该参数
37
38 }