Explorar o código

Merge branch 'master' of http://gogs.renlianiot.com:4000/zmcoding/smart-tool-api

likang %!s(int64=2) %!d(string=hai) anos
pai
achega
8e7da3fad5
Modificáronse 1 ficheiros con 23 adicións e 2 borrados
  1. 23 2
      catch/api/controller/Api.php

+ 23 - 2
catch/api/controller/Api.php

@@ -5,7 +5,7 @@ namespace catchAdmin\api\controller;
 use catcher\base\CatchRequest as Request;
 use catcher\CatchResponse;
 use catcher\base\CatchController;
-
+use \think\facade\Db;
 
 class Api extends CatchController
 {
@@ -20,8 +20,29 @@ class Api extends CatchController
         }
         //检测imei号是否在数据库中
 
+        $list=Db::table('users')->select();
+        //请求成功返回数据
+        json_success('获取成功',$list);
+    }
+
+    /**
+     * 获取所有风场风机
+     * @time 2022年06月09日 14:22
+     */
+    public function getWindList(){
+     
+        if (!isset($_GET['imei']) ||  $_GET['imei']=='') {
+            json_fail('缺少设备IMEI号参数');
+        }
+        //检测imei号是否在数据库中
 
+        $list=Db::table('wind')->field("id,name,number")->select();
+        foreach($list as $val){
+            $val['fan_list']=Db::table('fan')->where('wind_id',$val['id'])->field("id,wind_id,number")->select();
+        }
         //请求成功返回数据
-       json_success('获取成功','');
+        json_success('获取成功',$list);
     }
+
+    
 }