17 lines
338 B
PHP
17 lines
338 B
PHP
<?php
|
|
|
|
namespace App\Entities\Customer;
|
|
|
|
use App\Models\Customer\PointModel;
|
|
|
|
class PointEntity extends CustomerEntity
|
|
{
|
|
const PK = PointModel::PK;
|
|
const TITLE = PointModel::TITLE;
|
|
const STATUS_WIDTHDRAWAL = "widthdrawal";
|
|
const STATUS_DEPOSIT = "deposit";
|
|
|
|
//고객정보객체-상속
|
|
//타 객체정의 부분
|
|
}
|