add 企标计划变更流程
This commit is contained in:
+43
@@ -0,0 +1,43 @@
|
||||
package com.jero.modules.activiti.process.planchange.common;
|
||||
|
||||
/**
|
||||
* @author liJiaRao
|
||||
* @date 2024-10-08 9:36
|
||||
*/
|
||||
public class PlanChangeCommon {
|
||||
//起草人发起
|
||||
public static final String QCRFQ = "qcrfq";
|
||||
//部门经理审批
|
||||
public static final String BMJLSP = "bmjlsp";
|
||||
//法规部门处理人审批
|
||||
public static final String FGBMCLRSP = "fgbmclrsp";
|
||||
//法规部门经理审批
|
||||
public static final String FGBMJLSP = "fgbmjlsp";
|
||||
//高级经理审批
|
||||
public static final String GJJLSP = "gjjlsp";
|
||||
//总监审批
|
||||
public static final String ZJSP = "zjsp";
|
||||
//授权人审批
|
||||
public static final String SQRSP = "sqrsp";
|
||||
//起草人
|
||||
public static final String MAIN_DRAFTING_USER = "mainDraftingUser";
|
||||
//部门经理
|
||||
public static final String DEPART_MANAGER_LIST = "departManagerList";
|
||||
//法规部门处理人
|
||||
public static final String STANDARD_DEPART_HANDLER = "standardDepartHandler";
|
||||
//法规部门经理
|
||||
public static final String STANDARD_DEPART_MANAGER = "standardDepartManager";
|
||||
//高级经理
|
||||
public static final String SENIOR_MANAGER_LIST = "seniorManagerList";
|
||||
//总监
|
||||
public static final String CHIEF_INSPECTOR_LIST = "chiefInspectorList";
|
||||
//授权人
|
||||
public static final String AUTHORIZED_PERSON_LIST = "authorizedPersonList";
|
||||
//企标计划变更-变更类型 新增,取消,延期,人员变更
|
||||
public static final String ADD = "1";
|
||||
public static final String CANCEL = "2";
|
||||
public static final String DELAY = "3";
|
||||
public static final String PERSON_CHANGE = "4";
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user