weidy
2023-07-05 9c5ac8c682b95106408012b40b01e5131cd37484
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.vci.ubcs.omd.constant;
 
/**
 * Description:
 *
 * @author LiHang
 * @date 2023/4/23
 */
public class BtmTypeConstant {
 
    /**
     * 属性的业务类型名称
     */
    public static final String ATTRIBUTE = "attribute";
 
    /**
     * 业务类型对象的 业务类型名称
     */
    public static final String BTMTYPE = "btmType";
 
    /**
     * 业务类型包含的属性的   业务类型名称
     */
    public static final String BTM_TYPE_ATTRIBUTE = "btmTypeAttribute";
 
    /**
     * 枚举的业务类型名称
     */
    public static final String ENUM = "enum";
 
    /**
     * 枚举项的业务类型名称
     */
    public static final String ENUM_ITEM = "enumItem";
 
    /**
     * 类注释的业务类型名称
     */
    public static final String CLASS_ANNOTATION = "classAnnotation";
 
    /**
     * 属性注释的业务类型名称
     */
    public static final String FIELD_ANNOTATION = "fieldAnnotation";
 
    /**
     * 生命周期的业务类型名称
     */
    public static final String LIFE_CYCLE = "lifecycle";
 
    /**
     * 生命周期事件的业务类型名称
     */
    public static final String LIFE_CYCLE_EVENT = "lifeCycleEvent";
 
    /**
     * 生命周期的节点
     */
    public static final String LIFE_CYCLE_NODE = "lifeCycleNode";
 
    /**
     * 生命周期的连接线信息
     */
    public static final String LIFE_CYCLE_EDGE = "lifeCycleEdge";
 
    /**
     * 生命周期连接线的业务类型名称
     */
    public static final String LIFE_CYCLE_LINE = "lifeCycleLine";
 
    /**
     * 生命周期连接线的事件  的业务类型名称
     */
    public static final String LIFE_CYCLE_LINE_EVENT = "lifeCycleLineEvent";
 
    /**
     * 链接类型的属性 的业务类型名称
     */
    public static final String LINK_TYPE_ATTRIBUTE = "linkTypeAttribute";
 
    /**
     * 链接类型 的业务类型名称
     */
    public static final String LINK_TYPE = "linkType";
 
    /**
     * 方法注释 的业务类型名称
     */
    public static final String METHOD_ANNOTATION = "methodAnnotation";
 
    /**
     * 修改属性的 业务类型名称
     */
    public static final String MODIFY_ATTRIBUTE = "modifyAttribute";
 
    /**
     * 参数注释 的业务类型名称
     */
    public static final String PARAM_ANNOTATION = "paramAnnotation";
 
    /**
     * 版本规则 的业务类型名称
     */
    public static final String REVISION_RULE = "revisionRule";
 
    /**
     * 状态 的业务类型名称
     */
    public static final String STATUS = "status";
}