123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /*
- * @Descripttion: 下发工具等相关信息
- * @version: 1.0.0
- * @Author: likang
- * @Date: 2022-06-09 14:58:24
- * @LastEditors: likang
- * @LastEditTime: 2022-06-09 15:52:22
- */
- namespace catchAdmin\api\controller;
- use catcher\base\CatchRequest as Request;
- use catcher\CatchResponse;
- use catcher\base\CatchController;
- use PhpParser\Node\Expr\FuncCall;
- class Tool extends CatchController
- {
- /**
- * @Descripttion: 获取扳手列表
- * @name: likang
- * @return {*}
- */
- public function getWrenchList()
- {
-
- }
- public function getUserList(){
-
- if (!isset($_GET['imei']) || $_GET['imei']=='') {
- json_fail('缺少设备IMEI号参数');
- }
- //检测imei号是否在数据库中
- //请求成功返回数据
- json_success('获取成功','');
- }
- }
|