提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.bpm.controller.admin.task.vo.task; |
H |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageParam; |
|
4 |
import com.iailab.framework.common.util.date.DateUtils; |
|
5 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
6 |
import lombok.Data; |
|
7 |
import org.springframework.format.annotation.DateTimeFormat; |
|
8 |
|
|
9 |
import java.time.LocalDateTime; |
|
10 |
|
|
11 |
@Schema(description = "管理后台 - 流程任务的的分页 Request VO") // 待办、已办,都使用该分页 |
|
12 |
@Data |
|
13 |
public class BpmTaskPageReqVO extends PageParam { |
|
14 |
|
f4f940
|
15 |
@Schema(description = "流程任务名", example = "芋道") |
e7c126
|
16 |
private String name; |
H |
17 |
|
f4f940
|
18 |
@Schema(description = "流程分类", example = "1") |
H |
19 |
private String category; |
|
20 |
|
e7c126
|
21 |
@Schema(description = "创建时间") |
H |
22 |
@DateTimeFormat(pattern = DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|
23 |
private LocalDateTime[] createTime; |
|
24 |
|
|
25 |
} |