[积分商城]PlayX用户资产
This commit is contained in:
26
app/common/model/MallPlayxUserAsset.php
Normal file
26
app/common/model/MallPlayxUserAsset.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user