dbmsv4/app/Entities/Customer/CustomerEntity.php
2026-02-26 13:07:07 +09:00

23 lines
430 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);
$this->nullableFields = [
...$this->nullableFields,
'user_uid',
];
}
final public function getUserUid(): ?int
{
return $this->user_uid;
}
}