微信小程序主页完成

This commit is contained in:
2023-09-26 10:22:29 +08:00
parent e0fd0c9822
commit fb902f09da
234 changed files with 53655 additions and 21 deletions

View File

@@ -21,7 +21,6 @@ import java.util.List;
public interface ProductFeignClient {
/**
* 根据分类id获取分类信息
* \
*
* @param categoryId
* @return
@@ -64,4 +63,20 @@ public interface ProductFeignClient {
*/
@PostMapping("/api/product/inner/findCategoryList")
List<Category> findCategoryList(@RequestBody List<Long> categoryIdList);
/**
* 获取所有分类
*
* @return
*/
@GetMapping("/api/product/inner/findAllCategoryList")
public List<Category> findAllCategoryList();
/**
* 获取新人优惠
*
* @return
*/
@GetMapping("/api/product/inner/findNewPersonSkuInfoList")
public List<SkuInfo> findNewPersonSkuInfoList();
}