[积分商城]PlayX每日推送数据

This commit is contained in:
2026-03-20 18:10:34 +08:00
parent 0d62c915bd
commit 05312b3417
5 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?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',
];
}