fromUserId = $data['from_user_id'] ?? 0; $this->toUserId = $data['to_user_id'] ?? 0; $this->fundId = $data['fund_id'] ?? 0; $this->amount = $data['amount'] ?? 0.00; $this->remark = $data['remark'] ?? null; } /** * 转换为数组 */ public function toArray(): array { return [ 'from_user_id' => $this->fromUserId, 'to_user_id' => $this->toUserId, 'fund_id' => $this->fundId, 'amount' => $this->amount, 'remark' => $this->remark, ]; } }