model = new ExpressModel; } /** * 获取快递公司列表 */ public function index() { $list = $this->model ->order('weigh', 'asc') ->order('id', 'asc') ->select(); $result = array("total" => count($list), "rows" => $list->toArray()); return $this->success("获取成功", $result); } }