Merge remote-tracking branch 'origin/master'

This commit is contained in:
GYJ
2025-03-07 19:08:32 +08:00

View File

@@ -42,7 +42,7 @@ public class ShopExtendController {
*/
@SaAdminCheckPermission(value = "shopExtend:detail", name = "店铺拓展参数详情")
@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)));
}