[积分商城]PlayX领取记录

This commit is contained in:
2026-03-20 18:10:44 +08:00
parent 2e0ecbaebe
commit c74b029436
5 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
declare(strict_types=1);
namespace app\common\model;
use support\think\Model;
/**
* PlayX 领取记录(幂等)
*/
class MallPlayxClaimLog extends Model
{
protected string $name = 'mall_playx_claim_log';
protected array $type = [
'claimed_amount' => 'integer',
'create_time' => 'integer',
];
}