|
@@ -1,12 +1,4 @@
|
|
|
<?php
|
|
|
-/*
|
|
|
- * @Descripttion:
|
|
|
- * @version: 1.0.0
|
|
|
- * @Author: likang
|
|
|
- * @Date: 2022-08-12 11:31:01
|
|
|
- * @LastEditors: likang
|
|
|
- * @LastEditTime: 2022-08-13 17:00:52
|
|
|
- */
|
|
|
|
|
|
namespace catchAdmin\tag_history\controller;
|
|
|
|
|
@@ -16,6 +8,7 @@ use catcher\CatchResponse;
|
|
|
use catcher\base\CatchController;
|
|
|
use catchAdmin\tag_history\model\TagHistory as tagHistoryModel;
|
|
|
use catcher\CatchAdmin;
|
|
|
+use catcher\Code;
|
|
|
use think\facade\Db;
|
|
|
|
|
|
class TagHistory extends CatchController
|
|
@@ -34,6 +27,7 @@ class TagHistory extends CatchController
|
|
|
*/
|
|
|
public function index(Request $request): \think\Response
|
|
|
{
|
|
|
+
|
|
|
$data = $request->get();
|
|
|
$time = isset($data['time']) ? $data['time'] : '';
|
|
|
$mac = isset($data['mac']) ? $data['mac'] : '';
|
|
@@ -48,7 +42,6 @@ class TagHistory extends CatchController
|
|
|
}
|
|
|
|
|
|
if (!empty($mac)) {
|
|
|
-
|
|
|
$where[] = ['mac', 'in', implode(",", $mac)];
|
|
|
}
|
|
|
if (!empty($tage)) {
|
|
@@ -57,7 +50,12 @@ class TagHistory extends CatchController
|
|
|
if ($endtime == 1) {
|
|
|
//生成报告
|
|
|
$end = time();
|
|
|
-
|
|
|
+ if (empty($mac)) {
|
|
|
+ $mac = $this->tagHistoryModel->group('mac')->column('mac');
|
|
|
+ }
|
|
|
+ if (empty($tage)) {
|
|
|
+ $tage = $this->tagHistoryModel->group('lable')->column('lable');
|
|
|
+ }
|
|
|
$tagList = $this->tagHistoryModel->where($where)->where('addTime', '<=', $end)->select();
|
|
|
$content = [
|
|
|
'mac' => json_encode($mac),
|
|
@@ -69,10 +67,11 @@ class TagHistory extends CatchController
|
|
|
];
|
|
|
$report = new Report();
|
|
|
$report->save($content);
|
|
|
+ return CatchResponse::success('生成报告成功');
|
|
|
}
|
|
|
|
|
|
$list = $this->tagHistoryModel->group('mac,lable')->where($where)
|
|
|
- ->field('mac,lable,max(addTime) as addTime,AVG(rssi) as ave_rssi,count(*) as num')->select()->toArray();
|
|
|
+ ->field('mac,lable,max(addTime) as addTime,format(AVG(rssi),2) as ave_rssi,count(*) as num')->select()->toArray();
|
|
|
|
|
|
foreach ($list as $key => $value) {
|
|
|
$wheres = [];
|
|
@@ -162,4 +161,40 @@ class TagHistory extends CatchController
|
|
|
$time = time();
|
|
|
return CatchResponse::success($time);
|
|
|
}
|
|
|
+ /**
|
|
|
+ * @Descripttion: 根据标签和设备获取数据和心跳
|
|
|
+ * @name: likang
|
|
|
+ * @param {Request} $request
|
|
|
+ * @return {*}
|
|
|
+ */
|
|
|
+ public function getRecordByTag(Request $request)
|
|
|
+ {
|
|
|
+ $lable = $request->get('lable');
|
|
|
+ $mac = $request->get('mac');
|
|
|
+ $limit = 10;
|
|
|
+ $page = 1;
|
|
|
+ if ($request->get('page')) {
|
|
|
+ $page = $request->get('page');
|
|
|
+ }
|
|
|
+ if ($request->get('limit')) {
|
|
|
+ $limit = $request->get('limit');
|
|
|
+ }
|
|
|
+ $where = [
|
|
|
+ ['lable', '=', $lable],
|
|
|
+ ['mac', '=', $mac]
|
|
|
+ ];
|
|
|
+ $list = $this->tagHistoryModel->where($where)->order('addTime desc')->page($page)->limit($limit)->select();
|
|
|
+ foreach ($list as $key => $value) {
|
|
|
+ $list[$key]['time'] = date('Y-m-d H:i:s', $value['time']);
|
|
|
+ $list[$key]['addTime'] = date('Y-m-d H:i:s', $value['addTime']);
|
|
|
+ }
|
|
|
+ return json([
|
|
|
+ 'code' => Code::SUCCESS,
|
|
|
+ 'message' => 'success',
|
|
|
+ 'count' => $this->tagHistoryModel->where($where)->count(),
|
|
|
+ 'current' => $page,
|
|
|
+ 'limit' => $limit,
|
|
|
+ 'data' => $list,
|
|
|
+ ]);
|
|
|
+ }
|
|
|
}
|