update 标准征求意见流程
This commit is contained in:
+38
@@ -0,0 +1,38 @@
|
||||
package com.jero.modules.activiti.process.fb.common;
|
||||
|
||||
/**
|
||||
* @Author: liao
|
||||
* @Date: 2023/11/13 10:55
|
||||
* @Description: 标准征求意见流程taskId
|
||||
*/
|
||||
public class ConsultationTaskId {
|
||||
|
||||
private ConsultationTaskId() {}
|
||||
|
||||
public static final String ENGINEER_START = "engineer_start"; // 法规工程师发起
|
||||
|
||||
public static final String ENGINEER_START_END = "engineer_start_end"; // 法规工程师汇总
|
||||
|
||||
public static final String DEPART_LEADER_START = "depart_leader_start"; // 各部所主管级领导分发
|
||||
|
||||
public static final String DEPART_LEADER_END_1 = "depart_leader_end_1"; // 各部所主管级领导汇总
|
||||
|
||||
public static final String DEPART_LEADER_END_2 = "depart_leader_end_2"; // 各部所主管级领导汇总
|
||||
|
||||
public static final String DEPART_LEADER_END_3 = "depart_leader_end_3"; // 各部所主管级领导汇总
|
||||
|
||||
public static final String DEPART_LEADER_END_4 = "depart_leader_end_4"; // 各部所主管级领导汇总
|
||||
|
||||
public static final String MODULE_OWNER_START = "module_owner_start"; // 模块负责人分发
|
||||
|
||||
public static final String MODULE_OWNER_END_1 = "module_owner_end_1"; // 模块负责人汇总
|
||||
|
||||
public static final String MODULE_OWNER_END_2 = "module_owner_end_2"; // 模块负责人汇总
|
||||
|
||||
public static final String MODULE_OWNER_END_3 = "module_owner_end_3"; // 模块负责人汇总
|
||||
|
||||
public static final String DESIGN_ENGINEER_1 = "design_engineer_1"; // 设计工程师填写征求意见
|
||||
|
||||
public static final String DESIGN_ENGINEER_2 = "design_engineer_2"; // 设计工程师填写征求意见
|
||||
|
||||
}
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
package com.jero.modules.activiti.process.fb.common;
|
||||
|
||||
/**
|
||||
* @Author: liao
|
||||
* @Date: 2023/11/13 10:06
|
||||
* @Description: 流程用户类型
|
||||
*/
|
||||
public class ProcessUserType {
|
||||
|
||||
private ProcessUserType() {}
|
||||
|
||||
public static final String ENGINEER = "engineer"; // 法规工程师
|
||||
|
||||
public static final String DEPART_LEADER = "departLeader"; // 部所主管级领导
|
||||
|
||||
public static final String MODULE_OWNER = "moduleOwner"; // 模块负责人
|
||||
|
||||
public static final String DESIGN_ENGINEER = "designEngineer"; // 设计工程师
|
||||
|
||||
public static final String OTHER = "other"; // 其他
|
||||
|
||||
}
|
||||
+4
@@ -34,4 +34,8 @@ public class ProcessFbStandardConsultationVO {
|
||||
@ApiModelProperty(value = "征求意见列表")
|
||||
private List<ProcessFbConsultationList> processFbConsultationLists;
|
||||
|
||||
/**用户类型*/
|
||||
@ApiModelProperty(value = "用户类型(engineer法规工程师、departLeader部所主管级领导、moduleOwner模块负责人、designEngineer设计工程师、other其他)")
|
||||
private String userType;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user