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
package org.springblade.mdm.gkw.programnode.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Getter;
import lombok.Setter;
import org.springblade.core.mp.base.BizEntity;
import org.springblade.mdm.flow.entity.FlowProgramFile;
 
import java.util.Date;
 
 
@Setter
@Getter
@TableName("mdm_nc_node")
public class ProgramNode extends BizEntity {
    /**
     * 节点类型: 普通节点 10
     */
    public static final String TYPE_PROGRAM_STATUS = "10";
    /**
     * 程序包名
     */
    public static final String TYPE_PROGRAM_PACKAGE = "60";
 
    /**
     * 程序文件
     */
    public static final String TYPE_PROGRAM_FILE = "70";
 
 
    private String name;
    private Long parentId;
 
    /**
     * 上级父id集合
     */
    private String parentIds;
    /**
     * 设备编号
     */
    //private String machineCode;
 
    /**
     * 文件类型,只有
     */
 
    /**
     * 节点类型:字典
      */
    private String nodeType;
 
 
 
    /**
     * 流程程序文件id,只有程序文件(70)类型的节点有此值
     */
    private Long programFileId;
 
    /**
     * 目录类型
     */
    private String dirType;
 
 
}