宝体数据调用接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
676 B

<?php
namespace app\admin\controller\pass;
use app\admin\controller\Controller;
use think\Db;
class Pass extends Controller
{
public function index()
{
return $this->fetch('index', [
'list' => Db::table('bt_passenger_flow')->order('granularity')->select()->toArray()
]);
}
public function allIndex()
{
return $this->fetch('allIndex', [
'list' => Db::table('bt_passenger_flow_all')->select()->toArray()
]);
}
public function realIndex()
{
return $this->fetch('realIndex', [
'list' => Db::table('bt_passenger_flow_real')->select()->toArray()
]);
}
}