[积分商城]PlayX领取记录
This commit is contained in:
20
app/common/model/MallPlayxClaimLog.php
Normal file
20
app/common/model/MallPlayxClaimLog.php
Normal 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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user