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