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
| package com.dl.workflow.domain;
|
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| /**
| * 流程实例关联表单对象 sys_instance_form
| *
| * @author KonBAI
| * @createTime 2022/3/7 22:07
| */
| @Data
| @TableName("wf_deploy_form")
| public class WfDeployForm {
| private static final long serialVersionUID = 1L;
|
| /**
| * 流程部署主键
| */
| private String deployId;
|
| /**
| * 表单Key
| */
| private String formKey;
|
| /**
| * 节点Key
| */
| private String nodeKey;
|
| /**
| * 表单名称
| */
| private String formName;
|
| /**
| * 节点名称
| */
| private String nodeName;
|
| /**
| * 表单内容
| */
| private String content;
| }
|
|