17 lines
280 B
PHP
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'];
|
|
}
|
|
}
|