20 lines
425 B
PHP
20 lines
425 B
PHP
<?php
|
|
|
|
namespace App\Entities\Customer;
|
|
|
|
use App\Entities\CommonEntity;
|
|
|
|
abstract class CustomerEntity extends CommonEntity
|
|
{
|
|
private ?ClientEntity $_clientEntity = null;
|
|
public function __construct(array|null $data = null)
|
|
{
|
|
parent::__construct($data);
|
|
}
|
|
//고객정보객체
|
|
final public function getClientUID(): int
|
|
{
|
|
return intval($this->attributes['clientinfo_uid']);
|
|
}
|
|
}
|