dbms/app/Entities/Customer/PointEntity.php
2025-05-14 16:12:09 +09:00

12 lines
191 B
PHP

<?php
namespace App\Entities\Customer;
use App\Models\Customer\PointModel;
class PointEntity extends CustomerEntity
{
const PK = PointModel::PK;
const TITLE = PointModel::TITLE;
}