dbmsv3/app/Entities/Customer/AccountEntity.php
2025-10-15 14:02:42 +09:00

26 lines
587 B
PHP

<?php
namespace App\Entities\Customer;
use App\Models\Customer\AccountModel;
class AccountEntity extends CustomerEntity
{
const PK = AccountModel::PK;
const TITLE = AccountModel::TITLE;
const DEFAULT_STATUS = STATUS['DEPOSIT'];
final public function getUserUID(): int
{
return $this->attributes['user_uid'];
}
final public function getClientInfoUID(): int
{
return $this->attributes['clientinfo_uid'];
}
//기본기능
public function getContent(): string|null
{
return $this->attributes['content'];
}
}