123456789101112131415161718192021222324252627282930313233 |
- <?php
- declare (strict_types=1);
- namespace app\services\pc;
- use app\services\BaseServices;
- use app\services\other\SystemCityServices;
- class PublicServices extends BaseServices
- {
-
- public function getCity(int $pid)
- {
-
- $city = app()->make(SystemCityServices::class);
- $list = $city->getColumn(['parent_id' => $pid, 'is_show' => 1], 'city_id,name');
- return $list;
- }
- }
|