31 lines
620 B
PHP
31 lines
620 B
PHP
<?php
|
||
/**
|
||
* @date :2023年03月2日
|
||
* @author:刘孝全
|
||
* @email:q8197264@126.com
|
||
*
|
||
* @ 地区联动模型
|
||
*/
|
||
namespace app\api\model;
|
||
|
||
use think\model;
|
||
|
||
class GeoProvince extends Model {
|
||
protected $table = "fa_geo_province";
|
||
|
||
// public function test(){
|
||
// return $this->belongsToMany(User::class,'fa_geo_city','user_id','role_id');
|
||
// }
|
||
|
||
/**
|
||
* 省
|
||
*/
|
||
static function Get(){
|
||
$res = self::where(['switch'=>1])
|
||
->field('province_id id,province_code code,province_name name')
|
||
->select();
|
||
|
||
return $res;
|
||
}
|
||
|
||
} |