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