|  |  | 
 |  |  |     public ApiResponse createPlat(@RequestBody GoodCreatePlatRequest param) { | 
 |  |  |         goodsService.openSyncSwitch(); | 
 |  |  |         goodsService.createPlat(param); | 
 |  |  |         cateParamSelectService.dealCateParamSelect(); | 
 |  |  | //        cateParamSelectService.dealCateParamSelect(); | 
 |  |  |         return ApiResponse.success("同步操作成功,请稍后刷新查看商品同步信息"); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | 
 |  |  |         cateParamSelectService.dealCateParamSelect(); | 
 |  |  |         return ApiResponse.success(val); | 
 |  |  |     } | 
 |  |  |     @ApiOperation("导入图片模板") | 
 |  |  |     @PostMapping("/importExcel") | 
 |  |  |     @ApiImplicitParams({ | 
 |  |  |             @ApiImplicitParam(name = "file", value = "file", required = true, paramType = "query", dataType = "file", dataTypeClass = File.class), | 
 |  |  |     }) | 
 |  |  |     @RequiresPermissions("business:goods:update") | 
 |  |  |     public ApiResponse<Integer> importImgExcel (@ApiParam(value = "file") MultipartFile file) { | 
 |  |  |         Integer val = goodsService.importBatchImg(file); | 
 |  |  |         return ApiResponse.success(val); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation("修改状态") | 
 |  |  | 
 |  |  |     public ApiResponse<String> batchUpdateDisableById(@RequestBody BatchDisableDTO batchDisableDTO) { | 
 |  |  |         return ApiResponse.success(goodsService.batchUpdateDisableById(batchDisableDTO)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation("列表 - H5") | 
 |  |  |     @PostMapping("/list") |