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";
|
}
|