feat: 标准入库流程测试实例提交 及 项目token固定用户admin

This commit is contained in:
super_liu
2021-06-09 17:34:42 +08:00
parent fe786eec40
commit 19c7a56d73
6 changed files with 62 additions and 51 deletions
@@ -0,0 +1,21 @@
package com.adc.da.common;
import java.util.Map;
import java.util.TreeMap;
/**
* @Description: TODO
* @author: super_liu
* @date: 2021年06月09日 17:18
*/
public class ActDefineStartMap {
// map 添加 新的流程实例
public static String actDefineStartMap(String type){
Map<String,String> map = new TreeMap<>();
map.put("1","standardLibraryWkflow");
return map.get(type);
}
}