获取当前店铺拓展参数详情接口

This commit is contained in:
张松 2025-03-07 19:04:27 +08:00
parent 35073d1c2d
commit 4f4ab0757d
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public class ShopExtendController {
*/ */
@SaAdminCheckPermission(value = "shopExtend:detail", name = "店铺拓展参数详情") @SaAdminCheckPermission(value = "shopExtend:detail", name = "店铺拓展参数详情")
@GetMapping("/detail") @GetMapping("/detail")
public CzgResult<ShopExtend> detail(String autoKey) { public CzgResult<ShopExtend> detail(@RequestParam String autoKey) {
return CzgResult.success(shopExtendService.getOne(new QueryWrapper().eq(ShopExtend::getShopId, StpKit.USER.getShopId()).eq(ShopExtend::getAutoKey, autoKey))); return CzgResult.success(shopExtendService.getOne(new QueryWrapper().eq(ShopExtend::getShopId, StpKit.USER.getShopId()).eq(ShopExtend::getAutoKey, autoKey)));
} }