广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-06 b12c9e77a6b6a7b410ac421c5a3d68da88823460
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package org.dromara.workflow.domain.vo;
 
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
import cn.idev.excel.annotation.ExcelProperty;
import org.dromara.common.excel.annotation.ExcelDictFormat;
import org.dromara.common.excel.convert.ExcelDictConvert;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
import org.dromara.workflow.domain.FlowSpel;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
 
 
/**
 * 流程spel表达式定义视图对象 flow_spel
 *
 * @author Michelle.Chung
 * @date 2025-07-04
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = FlowSpel.class)
public class FlowSpelVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键id
     */
    @ExcelProperty(value = "主键id")
    private Long id;
 
    /**
     * 组件名称
     */
    @ExcelProperty(value = "组件名称")
    private String componentName;
 
    /**
     * 方法名
     */
    @ExcelProperty(value = "方法名")
    private String methodName;
 
    /**
     * 参数
     */
    @ExcelProperty(value = "参数")
    private String methodParams;
 
    /**
     * 预览spel值
     */
    @ExcelProperty(value = "预览spel值")
    private String viewSpel;
 
    /**
     * 状态(0正常 1停用)
     */
    @ExcelProperty(value = "状态", converter = ExcelDictConvert.class)
    @ExcelDictFormat(readConverterExp = "0=正常,1=停用")
    private String status;
 
    /**
     * 备注
     */
    @ExcelProperty(value = "备注")
    private String remark;
 
    /**
     * 创建时间
     */
    @ExcelProperty(value = "创建时间")
    private Date createTime;
 
}