dbmsv2/app/Entities/Customer/AccountEntity.php
2025-09-03 18:03:04 +09:00

17 lines
397 B
PHP

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