12 lines
191 B
PHP
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;
|
|
}
|