23 lines
463 B
PHP
23 lines
463 B
PHP
<?php
|
|
|
|
namespace App\Entities\Customer\Wallet;
|
|
|
|
use App\Models\Customer\Wallet\PointModel;
|
|
|
|
class PointEntity extends WalletEntity
|
|
{
|
|
const PK = PointModel::PK;
|
|
const TITLE = PointModel::TITLE;
|
|
protected $attributes = [
|
|
'title' => '',
|
|
'amount' => 0,
|
|
'balance' => 0,
|
|
'status' => '',
|
|
'content' => ''
|
|
];
|
|
public function __construct(array|null $data = null)
|
|
{
|
|
parent::__construct($data);
|
|
}
|
|
}
|