dbmsv2/app/Entities/Customer/CouponEntity.php
2025-09-04 13:45:50 +09:00

15 lines
306 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'];
//고객정보객체-상속
//타 객체정의 부분
}