|  |  | 
 |  |  |         customerLogService.updateById(customerLog); | 
 |  |  |         return ApiResponse.success(null); | 
 |  |  |     } | 
 |  |  |     @ApiOperation("根据ID重新提交crm") | 
 |  |  |     @PostMapping("/reSubmit") | 
 |  |  |     @RequiresPermissions("business:customerlog:update") | 
 |  |  |     public ApiResponse reSubmit(@RequestBody CustomerLog customerLog) { | 
 |  |  |         customerLogService.reSubmit(customerLog); | 
 |  |  |         return ApiResponse.success(null); | 
 |  |  |     } | 
 |  |  |     @ApiOperation("根据crm状态批量提交至crm") | 
 |  |  |     @PostMapping("/reSubmitAll") | 
 |  |  |     @RequiresPermissions("business:customerlog:update") | 
 |  |  |     public ApiResponse reSubmitAll(@RequestBody CustomerLog customerLog) { | 
 |  |  |         customerLogService.reSubmitAll(customerLog); | 
 |  |  |         return ApiResponse.success(null); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @ApiOperation("分页查询") | 
 |  |  |     @PostMapping("/page") |