Tool.php 857 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /*
  3. * @Descripttion: 下发工具等相关信息
  4. * @version: 1.0.0
  5. * @Author: likang
  6. * @Date: 2022-06-09 14:58:24
  7. * @LastEditors: likang
  8. * @LastEditTime: 2022-06-09 15:52:22
  9. */
  10. namespace catchAdmin\api\controller;
  11. use catcher\base\CatchRequest as Request;
  12. use catcher\CatchResponse;
  13. use catcher\base\CatchController;
  14. use PhpParser\Node\Expr\FuncCall;
  15. class Tool extends CatchController
  16. {
  17. /**
  18. * @Descripttion: 获取扳手列表
  19. * @name: likang
  20. * @return {*}
  21. */
  22. public function getWrenchList()
  23. {
  24. }
  25. public function getUserList(){
  26. if (!isset($_GET['imei']) || $_GET['imei']=='') {
  27. json_fail('缺少设备IMEI号参数');
  28. }
  29. //检测imei号是否在数据库中
  30. //请求成功返回数据
  31. json_success('获取成功','');
  32. }
  33. }