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