mg
2022-10-12 66f2ba4536c9096e2b020fad01e0bbc6474d1097
ycl-platform/src/main/java/com/ycl/controller/caseHandler/DispatchHandleController.java
@@ -52,6 +52,8 @@
    @RequestMapping(value = "/dispatch", method = RequestMethod.POST)
    @ResponseBody
    public CommonResult<DispatchInfo> dispatch(@Validated @RequestBody DispatchInfoParam dispatchInfoParam) {
        AdminUserDetails user = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
        dispatchInfoParam.setCreateUser(user.getUserId());
        return CommonResult.success(iDispatchHandleService.dispatch(dispatchInfoParam));
    }