You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
781 B
25 lines
781 B
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* App\Models\City
|
|
*
|
|
* @property int $id
|
|
* @property string $province_id
|
|
* @property string $name 城市名称
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\City newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\City newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\City query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\City whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\City whereName($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\City whereProvinceId($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class City extends Model
|
|
{
|
|
//
|
|
}
|