dbmsv2/app/Entities/Customer/PointEntity.php
2025-08-14 18:36:09 +09:00

14 lines
253 B
PHP

<?php
namespace App\Entities\Customer;
use App\Models\Customer\PointModel;
class PointEntity extends CustomerEntity
{
const PK = PointModel::PK;
const TITLE = PointModel::TITLE;
//고객정보객체-상속
//타 객체정의 부분
}