commit | author | age
|
a18bfa
|
1 |
package cn.autoform.bean.flow.def; |
Z |
2 |
|
|
3 |
import java.io.Serializable; |
|
4 |
|
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
/** |
|
8 |
* 流程活动定义表 |
|
9 |
* @ClassName: ProcessActivityDefine |
|
10 |
* @author [九鼎联合科技] |
|
11 |
* @date 2017年07月20日 上午10:18:50 |
|
12 |
*/ |
|
13 |
@Data |
|
14 |
public class ProcessActivityDefine implements Serializable { |
|
15 |
|
|
16 |
private static final long serialVersionUID = 1L; |
|
17 |
|
|
18 |
|
|
19 |
/** |
|
20 |
* 流程定义id |
|
21 |
* 表字段:process_def_id |
|
22 |
*/ |
|
23 |
private Long processDefId; |
|
24 |
|
|
25 |
/** |
|
26 |
* 流程活动定义id |
|
27 |
* 表字段:activity_def_id |
|
28 |
*/ |
|
29 |
private String activityDefId; |
|
30 |
|
|
31 |
/** |
|
32 |
* 流程活动名称 |
|
33 |
* 表字段:activity_def_name |
|
34 |
*/ |
|
35 |
private String activityDefName; |
|
36 |
|
|
37 |
} |