流程流转异常

This commit is contained in:
wangliwen 2022-07-11 15:43:40 +08:00
parent 588b41669d
commit c27d2c9c78
1 changed files with 2 additions and 2 deletions

View File

@ -180,8 +180,8 @@ public class AbilityCenterControllerV2 {
put("key", processStartDTO.getBusinessKey()); // 归属该部门申请的表单id
put("deptId", deptId); // 归属部门
put("id", applyFlag); //申请id
put("creator", user == null ? null : user.getId()); // 创建人
put("userId", user == null ? null : user.getId()); // 创建人
put("creator", user == null ? null : user.getId().toString()); // 创建人
put("userId", user == null ? null : user.getId().toString()); // 创建人
put("basic_facilities", basic_facilities); // 是否为基础设施
}
});