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

25 lines
485 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 GeoVillage extends Model
{
protected $table = "fa_geo_village";
static function Get($pcode) {
$list = self::where(['switch'=>1,'street_code'=>$pcode])
->field('village_id id,village_code code,village_name name')
->select();
return $list;
}
}