19 lines
343 B
PHP
19 lines
343 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 getClientInfoUID()
|
|
{
|
|
return $this->attributes['clientinfo_uid'];
|
|
}
|
|
}
|