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; } }