logistics/app/adminapi/lists/vehicle/VehicleLists.php
2023-08-30 22:36:10 +08:00

72 lines
1.8 KiB
PHP

<?php
namespace app\adminapi\lists\vehicle;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\logistics\Logistics;
use app\common\model\logistics\Product;
use app\common\model\platform\Platform;
use app\common\model\vehicle\Vehicle;
use app\common\lists\ListsSearchInterface;
use app\common\model\vehicle\VehicleRent;
/**
* Vehicle列表
* Class VehicleLists
* @package app\adminapi\lists
*/
class VehicleLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2023/08/17 09:23
*/
public function setSearch(): array
{
return [
'%like%' => ['gps_imei'],
'=' => ['license','status','type'],
];
}
/**
* @notes 获取列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2023/08/17 09:23
*/
public function lists(): array
{
return Vehicle::where($this->searchWhere)
->field(['id','license', 'gps_imei', 'status','type'])
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()
->each(function($item){
$item['status_name'] = $item->status_name;
$item['type_name'] = $item->type_name;
return $item;
})
->toArray();
}
/**
* @notes 获取数量
* @return int
* @author likeadmin
* @date 2023/08/17 09:23
*/
public function count(): int
{
return Vehicle::where($this->searchWhere)->count();
}
}