diff --git a/smtweb-framework/bpm/src/main/java/cc/smtweb/system/bpm/web/common/BpmConst.java b/smtweb-framework/bpm/src/main/java/cc/smtweb/system/bpm/web/common/BpmConst.java new file mode 100644 index 0000000..eaa44e4 --- /dev/null +++ b/smtweb-framework/bpm/src/main/java/cc/smtweb/system/bpm/web/common/BpmConst.java @@ -0,0 +1,15 @@ +package cc.smtweb.system.bpm.web.common; + +/** + * @Author: tanghp + * @Date: 2022-09-22 13:33 + * @Desc: bpm模块的常量 + */ +public interface BpmConst { + interface DataRight { + public final static String CUR_VALUE = "_CURRENT";//本区划、本机构、本部门 + public final static String ALL_DEPT = "_ALL_DEPT";//全部门权限 + public final static int V_SELF = 0;//不含下级 + public final static int V_INCLUDE_CHILDREN = 1;//含下级 + } +}