nk-lihaink-cn/app/api/model/GeoProvince.php
2023-03-02 18:13:42 +08:00

31 lines
620 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* @date 2023年03月2日
* @author刘孝全
* @emailq8197264@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;
}
}