success($this->services->getTicketInfo((int)$this->supplierId)); } /** * 更新打印信息 * @return void * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException */ public function update() { $data = $this->request->postMore([ ['develop_id', 0], ['api_key', ''], ['client_id', ''], ['terminal_number', ''], ['status', 0], ]); $this->validate($data, \app\validate\supplier\SupplierTicketPrintValidate::class, 'update'); $this->services->savePrintData((int)$this->supplierId, $data); return $this->success('保存成功'); } }