withdrawModel = $withdrawModel; \Setting::$uniqueAccountId = \YunShop::app()->uniacid = $withdrawModel->uniacid; } /** * 提现免审核 */ public function freeAudit() { $this->withdrawAudit(); $this->withdrawPay(); Log::debug("收入提现免审核ID:{$this->withdrawModel->id}自动审核打款完成"); } /** * 提现审核 */ private function withdrawAudit() { $audit_ids = explode(',', $this->withdrawModel->type_id); $this->withdrawModel->audit_ids = $audit_ids; (new AuditService($this->withdrawModel))->withdrawAudit(); } /** * 提现打款 */ private function withdrawPay() { (new PayedService($this->withdrawModel))->withdrawPay(); } }