model->where('id', $id)->first(); } /** * 获取全部数据 * User: Mead */ public function all() { return $this->model->get(); } public function byIdGetBoxNo($id) { return $this->model->where('id', $id)->value('box_no'); } public function byIdGetNoRidingBoxNo($id) { return $this->model->where('id', $id)->where('is_riding', Bike::RIDING_NO)->value('box_no'); } }