提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.bpm.controller.admin.definition.vo.expression; |
H |
2 |
|
|
3 |
import com.alibaba.excel.annotation.ExcelProperty; |
|
4 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
import java.time.LocalDateTime; |
|
8 |
|
|
9 |
@Schema(description = "管理后台 - BPM 流程表达式 Response VO") |
|
10 |
@Data |
|
11 |
public class BpmProcessExpressionRespVO { |
|
12 |
|
|
13 |
@Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "3870") |
|
14 |
@ExcelProperty("编号") |
|
15 |
private Long id; |
|
16 |
|
|
17 |
@Schema(description = "表达式名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "李四") |
|
18 |
@ExcelProperty("表达式名字") |
|
19 |
private String name; |
|
20 |
|
|
21 |
@Schema(description = "表达式状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
|
22 |
private Integer status; |
|
23 |
|
|
24 |
@Schema(description = "表达式", requiredMode = Schema.RequiredMode.REQUIRED) |
|
25 |
private String expression; |
|
26 |
|
|
27 |
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
|
28 |
private LocalDateTime createTime; |
|
29 |
|
|
30 |
} |