|  |  | 
 |  |  | import com.doumee.core.model.PageData; | 
 |  |  | import com.doumee.core.model.PageWrap; | 
 |  |  | import com.doumee.dao.business.model.CateParamSelect; | 
 |  |  | import com.doumee.dao.business.model.dto.GoodCreatePlatRequest; | 
 |  |  | import com.doumee.service.CateParamSelectService; | 
 |  |  | import io.swagger.annotations.Api; | 
 |  |  | import io.swagger.annotations.ApiOperation; | 
 |  |  | 
 |  |  |     public ApiResponse findById(@PathVariable Integer id) { | 
 |  |  |         return ApiResponse.success(cateParamSelectService.findById(id)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation("更新企业商品分类选择项") | 
 |  |  |     @PostMapping("/renewCateParamSelect") | 
 |  |  |     public ApiResponse renewCateParamSelect() { | 
 |  |  |         cateParamSelectService.dealCateParamSelect(); | 
 |  |  |         return ApiResponse.success("同步操作成功"); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | } |