dbmsv2/app/Entities/Customer/ServiceEntity.php
2025-08-19 15:07:14 +09:00

45 lines
1.2 KiB
PHP

<?php
namespace App\Entities\Customer;
use App\Entities\Customer\ClientEntity;
use App\Models\Customer\ServiceModel;
class ServiceEntity extends CustomerEntity
{
const PK = ServiceModel::PK;
const TITLE = ServiceModel::TITLE;
const STATUS_NORMAL = "normal";
const STATUS_PAUSE = "pause";
const STATUS_TERMINATED = "terminated";
public function getCode(): string
{
return $this->attributes['code'] ?? "null";
}
final public function getUserUID(): int
{
return intval($this->attributes['user_uid']);
}
public function getSwitchCode(): string
{
return $this->attributes['switchinfo_code'];
}
public function getType(): string
{
return $this->attributes['type'];
}
final public function getBillingAt(): string
{
return $this->attributes['billing_at'];
}
public function getItemEntities(string $type): array
{
return $this->attributes[$type] ?? [];
}
public function setItemEntities(string $type, array $itemEntities): void
{
$this->attributes[$type] = $itemEntities;
// $this->attributes[$type] = array_unique($this->attributes[$type], SORT_REGULAR);
}
}