24 lines
495 B
PHP
24 lines
495 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace app\common\model;
|
|
|
|
use support\think\Model;
|
|
|
|
/**
|
|
* PlayX 每日推送数据
|
|
*/
|
|
class MallPlayxDailyPush extends Model
|
|
{
|
|
protected string $name = 'mall_playx_daily_push';
|
|
|
|
protected array $type = [
|
|
'yesterday_win_loss_net' => 'float',
|
|
'yesterday_total_deposit' => 'float',
|
|
'lifetime_total_deposit' => 'float',
|
|
'lifetime_total_withdraw' => 'float',
|
|
'create_time' => 'integer',
|
|
];
|
|
}
|