weimingfei
2025-10-15 4caffc77d00a9048ffd51eea9973f62888e13ba6
server/visits/dmvisit_admin/src/main/java/com/doumee/cloud/admin/JkSketchCloudController.java
@@ -66,7 +66,9 @@
    @PostMapping("/updateById")
    @CloudRequiredPermission("business:jksketch:update")
    public ApiResponse updateById(@RequestBody JkSketch jkSketch, @RequestHeader(Constants.HEADER_USER_TOKEN) String token) {
        jkSketchService.updateById(jkSketch);
        jkSketch.setLoginUserInfo(this.getLoginUser(token));
        JkSketch model = jkSketchService.updateById(jkSketch);
        jkSketchService.startUpdateLineAsync(model);//异步优化
        return ApiResponse.success(null);
    }