调整数据库表的单复数

This commit is contained in:
2026-02-19 10:39:38 +08:00
parent 736a41a718
commit d310a29c03
56 changed files with 45577 additions and 506 deletions

View File

@@ -130,9 +130,9 @@ class City extends Controller
]);
}
public function children(int $parentId)
public function children(string $parentCode)
{
$children = $this->cityService->getChildren($parentId);
$children = $this->cityService->getChildren($parentCode);
return response()->json([
'code' => 200,
'message' => 'success',