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

25 lines
479 B
PHP

<?php
declare(strict_types=1);
namespace app\common\model;
use support\think\Model;
/**
* 每日推送数据
*/
class MallDailyPush extends Model
{
protected string $name = 'mall_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',
];
}