72 lines
2.2 KiB
Java
72 lines
2.2 KiB
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");
|
|
map.put("3","StandAskForOpinion");
|
|
map.put("4","standardregulatoryinventory");
|
|
map.put("5","projectEvaluationNewProcess");
|
|
map.put("6","xmhgpgXM");
|
|
|
|
|
|
map.put("8","nonConformanceRectificationKey");
|
|
map.put("9","standardReadWkflow");
|
|
map.put("10","itemlistvalidationprocessKey");
|
|
|
|
// 政策入库
|
|
map.put("laws1","lawsLibraryWkflow");
|
|
//政策征求意见, 认证重点法规/政策 流程
|
|
map.put("laws2","PolicyCommentProcessWorkFlow");
|
|
map.put("laws3","KCSTPReviewProcessWorkFlow");
|
|
|
|
// 企标制修订流程及企业标准库流程
|
|
map.put("buss1","bussLibraryWkflow");
|
|
// 企标制修订-产品标准
|
|
map.put("buss2","bussLibraryProductWkflow");
|
|
|
|
map.put("buss3","bussFsWkflow");
|
|
|
|
//张超然
|
|
map.put("20","StandardApplyMeetProcess");
|
|
map.put("21","StandardMeetProcess");
|
|
map.put("22","StandardAfterMeetProcess");
|
|
|
|
//李奥
|
|
map.put("14","ParticipateRevisionFiling");
|
|
map.put("15","JoinStandardFiling");
|
|
map.put("16","RecommendedApprovalleo");
|
|
//孔维一
|
|
map.put("17","policyResearchGroupEnrollment");
|
|
map.put("18","policyResearchGroupAttendMeeting");
|
|
map.put("19","policyResearchGroupAfterMeeting");
|
|
|
|
//企标复审流程
|
|
map.put("23","enterpriseBidReviewProcess");
|
|
map.put("24","Aboliish");
|
|
map.put("25","enterpriseStandardSystemRevisionPlan");
|
|
|
|
map.put("26","qbzxdlxjh");
|
|
// 问答流程
|
|
map.put("27","wdzxlc");
|
|
// 标准需求(翻译)申请流程
|
|
map.put("28","bzxqfy");
|
|
// 政策征求意见流程
|
|
map.put("29","PolicySolicitOpinionProcessWorkFlow");
|
|
|
|
return map.get(type);
|
|
}
|
|
}
|