Files
webman-buildadmin-mall/app/common/model/MallPlayxClaimLog.php

21 lines
341 B
PHP

<?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',
];
}