This commit is contained in:
wangjinlei
2024-05-09 17:42:31 +08:00
parent 7d8f0d85b3
commit 14c70bb6c5
5 changed files with 74 additions and 14 deletions

View File

@@ -178,7 +178,7 @@ public class ShopProductController {
@RequestMapping("/getCanBindProductAndCourse")
public R getCanBindProductAndCourse(@RequestBody ParamTo param){
Page<CourseCatalogueVo> canBindProductAndCourse = shopProductService.getCanBindProductAndCourse(param);
Map<String, Object> canBindProductAndCourse = shopProductService.getCanBindProductAndCourse(param);
return R.ok().put("page",canBindProductAndCourse);
}