dbms/app/Entities/Customer/AccountEntity.php
2025-06-13 16:44:28 +09:00

14 lines
264 B
PHP

<?php
namespace App\Entities\Customer;
use App\Models\Customer\AccountModel;
class AccountEntity extends CustomerEntity
{
const PK = AccountModel::PK;
const TITLE = AccountModel::TITLE;
//고객정보객체-상속
//타 객체정의 부분
}