Files
webman-buildadmin-mall/app/common/model/MallClaimLog.php
2026-03-30 18:33:24 +08:00

22 lines
325 B
PHP

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