1234567891011121314151617181920 |
- <?php
- namespace app\common\api;
- use think\facade\Db;
- /**
- * Description of LocationApi
- *
- * @author sgq
- */
- class LocationApi {
- public static function findProvinceSelect() {
- $where = [];
- $where[] = ["code", "like", "%0000"];
- return Db::table("un_common_location")->where($where)->select()->toArray();
- }
- }
|