likang hai 1 ano
pai
achega
7c97d58825

+ 3 - 2
.env

@@ -7,12 +7,13 @@ DEFAULT_TIMEZONE = Asia/Shanghai
 DOMAIN = http://app
 [DATABASE]
 TYPE = mysql
-HOSTNAME = 127.0.0.1
+HOSTNAME = localhost
 DATABASE = station
 USERNAME = root
-PASSWORD = 123456
+PASSWORD = root
 HOSTPORT = 3306
 CHARSET = utf8mb4
+
 DEBUG = true
 
 [REDIS]

+ 158 - 0
catch/tag_history/controller/Access.php

@@ -0,0 +1,158 @@
+<?php
+
+namespace catchAdmin\tag_history\controller;
+
+use catcher\base\CatchRequest as Request;
+use catcher\CatchResponse;
+use catcher\base\CatchController;
+use catchAdmin\tag_history\model\Access as accessModel;
+use catcher\Code;
+
+class Access extends CatchController
+{
+    protected $accessModel;
+    private $label=['44010201','44010202'];
+    
+    public function __construct(AccessModel $accessModel)
+    {
+        $this->accessModel = $accessModel;
+    }
+    
+    /**
+     * 列表
+     * @time 2023年04月18日 11:50
+     * @param Request $request 
+     */
+    public function index(Request $request) : \think\Response
+    {
+        $data = $request->get();
+        $time =  isset($data['time']) ? $data['time'] : '';
+        $mac = isset($data['mac']) ? $data['mac'] : '';
+        $tage = isset($data['tage']) ? $data['tage'] : '';
+        $endtime = isset($data['endtime']) ? $data['endtime'] : "";
+        $meter = isset($data['meter']) ? $data['meter'] : "";
+        $where = [];
+         $onewhere=[];
+         if (!empty($time)) {
+            $onewhere[] = ['addTime', '>=', $time];
+        } else {
+            $onewhere[] = ['addTime', '>=', time()];
+        }
+
+        if (!empty($tage)) {
+            $where[] = ['lable', 'in',  implode(",", $tage)];   
+        }
+        $list=[];
+      
+        if (!empty($tage)) {
+            $otherlabel=implode(",",$this->label);
+        }
+        
+        $labelArray=explode(',',$otherlabel);
+        foreach($labelArray as $item){
+            $otherWhere=[];
+           // $otherWhere[]=["mac","=",$othermac];
+            $otherWhere[]=["lable","=",trim($item)];
+            
+            $t1 = $this->accessModel->where($otherWhere)->order("id","desc")->find();
+            
+            if(empty($t1)){
+              
+                continue;
+            }
+            $t1['report_time'] = date('Y-m-d H:i:s', $t1['report_time']);
+            array_push($list,$t1);
+        }
+        return CatchResponse::success($list);
+    }
+    
+    /**
+     * 保存信息
+     * @time 2023年04月18日 11:50
+     * @param Request $request 
+     */
+    public function save(Request $request) : \think\Response
+    {
+        return CatchResponse::success($this->accessModel->storeBy($request->post()));
+    }
+    
+    /**
+     * 读取
+     * @time 2023年04月18日 11:50
+     * @param $id 
+     */
+    public function read($id) : \think\Response
+    {
+        return CatchResponse::success($this->accessModel->findBy($id));
+    }
+    
+    /**
+     * 更新
+     * @time 2023年04月18日 11:50
+     * @param Request $request 
+     * @param $id
+     */
+    public function update(Request $request, $id) : \think\Response
+    {
+        return CatchResponse::success($this->accessModel->updateBy($id, $request->post()));
+    }
+    
+    /**
+     * 删除
+     * @time 2023年04月18日 11:50
+     * @param $id
+     */
+    public function delete($id) : \think\Response
+    {
+        return CatchResponse::success($this->accessModel->deleteBy($id));
+    }
+    /**
+     * 获取标签
+     */
+    public function getTages(Request $request)
+    {
+       
+       
+
+        return CatchResponse::success($this->label);
+    }
+
+    public function getRecordByTag(Request $request)
+    {
+        $lable = $request->get('lable');
+        $mac = $request->get('mac');
+        $where=[];
+        $limit = 10;
+        $page = 1;
+        if ($request->get('page')) {
+            $page = $request->get('page');
+        }
+        if ($request->get('limit')) {
+            $limit = $request->get('limit');
+        }
+        $times=  $request->get("filter_time");
+        if(!empty($request->get("filter_time"))){
+            $where[]= ["time",">=",strtotime($times[0])];
+            $where[]= ["time","<=",strtotime($times[1])];
+        }
+      
+        $where[] =  ['lable', '=', $lable];
+     
+        
+        $list = $this->accessModel->where($where)->order('id desc')->page($page)->limit($limit)->select();
+        foreach ($list as $key => $value) {
+           
+            $list[$key]['report_time'] = date('Y-m-d H:i:s', $value['report_time']);
+         
+        }
+        return json([
+            'code'    => Code::SUCCESS,
+            'message' => 'success',
+            'count'   => $this->accessModel->where($where)->count(),
+            'current' => $page,
+            'limit'   => $limit,
+            'data'    => $list,
+        ]);
+    }
+
+}

+ 47 - 0
catch/tag_history/database/migrations/20230418115046_access.php

@@ -0,0 +1,47 @@
+<?php
+
+use think\migration\Migrator;
+use think\migration\db\Column;
+use Phinx\Db\Adapter\MysqlAdapter;
+
+class Access extends Migrator
+{
+    /**
+     * Change Method.
+     *
+     * Write your reversible migrations using this method.
+     *
+     * More information on writing migrations is available here:
+     * http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
+     *
+     * The following commands can be used in this method and Phinx will
+     * automatically reverse them when rolling back:
+     *
+     *    createTable
+     *    renameTable
+     *    addColumn
+     *    renameColumn
+     *    addIndex
+     *    addForeignKey
+     *
+     * Remember to call "create()" or "update()" and NOT "save()" when working
+     * with the Table class.
+     */
+    public function change()
+    {
+        $table = $this->table('access', ['engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '进出测试' ,'id' => 'id','signed' => true ,'primary_key' => ['id']]);
+        $table->addColumn('mac', 'string', ['limit' => 50,'null' => true,'signed' => true,'comment' => '',])
+			->addColumn('label', 'string', ['limit' => 50,'null' => true,'signed' => true,'comment' => '',])
+			->addColumn('report_time', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => true,'signed' => true,'comment' => '上报时间',])
+			->addColumn('rssi1', 'float', ['precision' => 10,'scale' => 4,'null' => true,'signed' => true,'comment' => '前方向信号',])
+			->addColumn('rssi2', 'float', ['precision' => 10,'scale' => 4,'null' => true,'signed' => true,'comment' => '后方向信号',])
+			->addColumn('rssi3', 'float', ['precision' => 10,'scale' => 4,'null' => true,'signed' => true,'comment' => '左方向信号',])
+			->addColumn('rssi4', 'float', ['precision' => 10,'scale' => 4,'null' => true,'signed' => true,'comment' => '右方向信号',])
+			->addColumn('creator_id', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '创建人ID',])
+			->addColumn('created_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '创建时间',])
+			->addColumn('updated_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '更新时间',])
+			->addColumn('deleted_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '软删除',])
+			->addIndex(['mac'], ['name' => 'mac'])
+            ->create();
+    }
+}

+ 35 - 0
catch/tag_history/model/Access.php

@@ -0,0 +1,35 @@
+<?php
+
+namespace catchAdmin\tag_history\model;
+
+use catcher\base\CatchModel as Model;
+
+class Access extends Model
+{
+    // 表名
+    public $name = 'access';
+    // 数据库字段映射
+    public $field = array(
+        'id',
+        'mac',
+        'label',
+        // 上报时间
+        'report_time',
+        // 前方向信号
+        'rssi1',
+        // 后方向信号
+        'rssi2',
+        // 左方向信号
+        'rssi3',
+        // 右方向信号
+        'rssi4',
+        // 创建人ID
+        'creator_id',
+        // 创建时间
+        'created_at',
+        // 更新时间
+        'updated_at',
+        // 软删除
+        'deleted_at',
+    );
+}

+ 3 - 1
catch/tag_history/route.php

@@ -30,4 +30,6 @@ $router->group(function () use ($router) {
 	$router->get('getTime', '\catchAdmin\tag_history\controller\TagHistory@getTime');
 	//获取折线图lineChart
 	$router->get('lineChart', '\catchAdmin\tag_history\controller\TagHistory@lineChart');
-})->middleware('auth');
+	// access路由
+	$router->resource('access', '\catchAdmin\tag_history\controller\access');
+})->middleware('auth');