店铺详情修改

This commit is contained in:
张松
2025-02-15 11:16:18 +08:00
parent 006e223c71
commit ec0809a783
3 changed files with 15 additions and 5 deletions

View File

@@ -42,8 +42,8 @@ public class ShopInfoController {
*/
@SaAdminCheckPermission("shopInfo:detail")
@GetMapping("/detail")
public CzgResult<ShopInfo> detail() {
return CzgResult.success(shopInfoService.detail());
public CzgResult<ShopInfo> detail(Integer id) {
return CzgResult.success(shopInfoService.detail(id));
}
/**