mini加接口

This commit is contained in:
shuo.wang
2025-06-12 16:09:10 +08:00
parent 31e09c0e3f
commit 53ed63596e

View File

@@ -2,6 +2,7 @@ package com.cool.store.controller.webc;
import com.cool.store.context.PartnerUserHolder;
import com.cool.store.request.*;
import com.cool.store.response.BranchShopDetailResponse;
import com.cool.store.response.MiniShopsResponse;
import com.cool.store.response.ResponseResult;
import com.cool.store.response.ShopResponse;
@@ -144,4 +145,10 @@ public class MiniShopController {
return ResponseResult.success(shopService.getShopStageStatus(shopId, subStage));
}
@ApiOperation("开店详情/左边小窗")
@GetMapping("/getBranchShopDetail")
public ResponseResult<BranchShopDetailResponse> getBranchShopDetail(@RequestParam("shopId") Long shopId) {
return ResponseResult.success(shopService.getBranchShopDetail(shopId));
}
}