getClassName(); } public function getModelClass(): string { return Model::class; } public function getEntityClass(): string { return Entity::class; } //사용자 포인트 입금 public function depositPoint(Entity $client, int $point): bool { if ($point < 0) { throw new \Exception("포인트금액이 잘못되었습니다. 포인트 : $point"); } $this->getModel()->where("Client_Code", $client->getClientCode()); $this->getModel()->update(["Client_Point=(Client_Point+{$point})" => null]); return true; } //사용자 포인트 출금 public function withdrawalPoint(Entity $client, int $point): bool { if ($point < 0) { throw new \Exception("포인트금액이 잘못되었습니다. 포인트 : $point"); } if ($client->getPoint() < $point) { throw new \Exception("포인트금액이 잘못되었습니다. 남은 포인트: " . $client->getPoint() . ", 포인트 : $point"); } $this->getModel()->where("Client_Code", $client->getClientCode()); $this->getModel()->update(["Client_Point=(Client_Point-{$point})" => null]); return true; } }