allocatr/application/worker/controller/OrderDispatch.php
2025-03-30 10:23:25 +08:00

17 lines
365 B
PHP

<?php
namespace app\worker\controller;
use app\common\controller\WorkerApi;
class OrderDispatch extends WorkerApi
{
protected $noNeedLogin = [];
public function index()
{
$res = $this->getOrderDispatchService()->dispatchList($this->user['id'], $this->request->request('page_size', 20));
$this->success('获取成功', $res);
}
}