懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
提交 | 用户 | 时间
8286c6 1 package cn.stylefeng.guns.workflow.modular.model;
2
3 import lombok.Data;
4
5 /**
6  * 流程模型
7  *
8  * @author fengshuonan
9  * @Date 2019/8/6 21:07
10  */
11 @Data
12 public class ActModel {
13
14     /**
15      * 模型id
16      */
17     private String modelId;
18
19     /**
20      * 流程作者
21      */
22     private String processAuthor;
23
24     /**
25      * 流程名称
26      */
27     private String name;
28
29     /**
30      * 流程标识
31      */
32     private String processId;
33
34     /**
35      * 模型名称
36      */
37     private String modelname;
38
39     /**
40      * 模型描述
41      */
42     private String description;
43
44     /**
45      * 模型分类
46      */
47     private String category;
48
49 }