model = new \app\common\model\TodoConvey(); } // 扫码 public function sweepCode(){ $data = [ 'code' =>input('code'), 'isStart' => input('isStart'), 'orgId' =>$this->orgId, 'todoId' => input('todoId'), 'content' => input('content'), 'img' => input('img'), 'sample' => '' ]; $ret = $this->model->sweepCode($data,$this->userId); if(!$ret){ HelpHander::error($this->model->getError()); } HelpHander::success([],'操作成功'); } }