浏览代码

bpm新增common包

4.0
FLYPHT 2 年前
父节点
当前提交
4c20b66809
共有 1 个文件被更改,包括 15 次插入0 次删除
  1. +15
    -0
      smtweb-framework/bpm/src/main/java/cc/smtweb/system/bpm/web/common/BpmConst.java

+ 15
- 0
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;//含下级
}
}

正在加载...
取消
保存