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

22 lines
351 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 GeoBrigade extends Model
{
protected $table="fa_geo_brigade";
static function Get(){
$res = self::select();
return $res;
}
}