add pc 获取店铺所属品牌

This commit is contained in:
shuo.wang
2025-05-23 14:44:13 +08:00
parent 0501edfbef
commit c5e2477f55

View File

@@ -152,4 +152,10 @@ public class PCShopController {
@RequestParam("subStage")Integer subStage) {
return ResponseResult.success(shopService.getSubStageHandle(shopId,subStage));
}
@ApiOperation("获取店铺所属品牌")
@GetMapping("/getFranchiseBrandName")
public ResponseResult<String> getFranchiseBrandName(@RequestParam(name = "shopId")Long shopId) {
return ResponseResult.success(shopService.getFranchiseBrandName(shopId));
}
}