From 4c20b6680966535f5bd4dbb110f7df84d045000e Mon Sep 17 00:00:00 2001 From: FLYPHT <1035748121@qq.com> Date: Thu, 22 Sep 2022 15:23:48 +0800 Subject: [PATCH] =?UTF-8?q?bpm=E6=96=B0=E5=A2=9Ecommon=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cc/smtweb/system/bpm/web/common/BpmConst.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 smtweb-framework/bpm/src/main/java/cc/smtweb/system/bpm/web/common/BpmConst.java 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;//含下级 + } +}