From 93c9ba201ef30f50f1662a2256c991c9900c6728 Mon Sep 17 00:00:00 2001 From: "choi.jh" Date: Tue, 23 Sep 2025 11:51:31 +0900 Subject: [PATCH] dbmsv2 init...1 --- app/Entities/Customer/ServiceEntity.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Entities/Customer/ServiceEntity.php b/app/Entities/Customer/ServiceEntity.php index 2aeca28..5b7bcad 100644 --- a/app/Entities/Customer/ServiceEntity.php +++ b/app/Entities/Customer/ServiceEntity.php @@ -19,7 +19,7 @@ class ServiceEntity extends CustomerEntity } final public function getServerEntity(): ServerEntity { - return $this->attributes['paymentEntity']; + return $this->attributes['serverEntity']; } final public function setPaymentEntity(PaymentEntity $entity): self { @@ -28,7 +28,7 @@ class ServiceEntity extends CustomerEntity } final public function getPaymentEntity(): PaymentEntity { - return $this->attributes['serverEntity']; + return $this->attributes['paymentEntity']; } final public function getUserUID(): string {