19 lines
305 B
PHP
19 lines
305 B
PHP
<?php
|
||
/**
|
||
* 时间:2023年03月02日
|
||
* 作者:墨楠小
|
||
* 邮箱:monanxiao@qq.com
|
||
* 地区 省市模型
|
||
*
|
||
*/
|
||
namespace app\admin\model;
|
||
|
||
use think\Model;
|
||
|
||
class GeoCity extends Model
|
||
{
|
||
|
||
// 设置当前模型对应的完整数据表名称
|
||
protected $table = 'fa_geo_city';
|
||
|
||
} |