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

27 lines
542 B
PHP

<?php
declare(strict_types=1);
namespace app\common\model;
use support\think\Model;
/**
* PlayX 用户资产
*/
class MallPlayxUserAsset extends Model
{
protected string $name = 'mall_playx_user_asset';
protected bool $autoWriteTimestamp = true;
protected array $type = [
'create_time' => 'integer',
'update_time' => 'integer',
'locked_points' => 'integer',
'available_points' => 'integer',
'today_limit' => 'integer',
'today_claimed' => 'integer',
];
}