22 lines
486 B
PHP
22 lines
486 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 DEFAULT_STATUS = STATUS['DEPOSIT'];
|
|
final public function getUserUID(): string
|
|
{
|
|
return $this->attributes['user_uid'];
|
|
}
|
|
final public function getClientInfoUID(): string
|
|
{
|
|
return $this->attributes['clientinfo_uid'];
|
|
}
|
|
//기본기능
|
|
}
|