22 lines
473 B
Java
22 lines
473 B
Java
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");
|
|
map.put("2","standardSurveyWorkFlow");
|
|
|
|
return map.get(type);
|
|
}
|
|
} |