添加商品关联推荐
This commit is contained in:
@@ -72,6 +72,15 @@ public class UProductController {
|
||||
return CzgResult.success(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取相关推荐商品
|
||||
*/
|
||||
@GetMapping("/related/{id}")
|
||||
public CzgResult<List<ShopProductVo>> getRelatedProduct(@PathVariable("id") Long id) {
|
||||
AssertUtil.isNull(id, "商品id不能为空");
|
||||
return CzgResult.success(uProductService.queryProductRelatedList(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 小程序点餐-商品详情
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user