dbms/app/Entities/Customer/PointEntity.php
2025-05-06 19:08:29 +09:00

17 lines
280 B
PHP

<?php
namespace App\Entities\Customer;
use App\Models\Customer\PointModel;
class PointEntity extends CustomerEntity
{
const PK = PointModel::PK;
const TITLE = PointModel::TITLE;
public function getAmount()
{
return $this->attributes['amount'];
}
}