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.
23 lines
679 B
23 lines
679 B
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* App\Models\Province
|
|
*
|
|
* @property int $id
|
|
* @property string $name 省份名称
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Province newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Province newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Province query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Province whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Province whereName($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class Province extends Model
|
|
{
|
|
//
|
|
}
|