15 lines
310 B
PHP
15 lines
310 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 DEFAULT_STATUS = STATUS['DEPOSIT'];
|
|
//고객정보객체-상속
|
|
//타 객체정의 부분
|
|
}
|