|
@@ -238,7 +238,9 @@ class Station extends CatchController
|
|
|
return CatchResponse::success(['list'=>$this->stationModel->getAllList($start,$limit),'total'=>$total]);
|
|
|
}
|
|
|
public function getAllListForTrans(Request $request) {
|
|
|
- $list=$this->stationModel->getAllList();
|
|
|
+ $start=0;
|
|
|
+ $limit=40000;
|
|
|
+ $list=$this->stationModel->getAllList($start,$limit);
|
|
|
$rows=[];
|
|
|
foreach($list as $val){
|
|
|
$item=['key'=>$val['mac'],'label'=>$val['name'] ];
|