dbmsv4/app/Entities/Customer/Wallet/PointEntity.php
2026-02-26 13:07:07 +09:00

19 lines
341 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;
/**
* 생성자
*/
public function __construct(array|null $data = null)
{
parent::__construct($data);
}
}