Files
dafuweng/addons/webman/model/PlayerLevel.php
2026-03-02 13:44:38 +08:00

32 lines
914 B
PHP

<?php
namespace addons\webman\model;
use addons\webman\traits\HasDateTimeFormatter;
use Illuminate\Database\Eloquent\Model;
/**
* Class PlayerLevel
* @property int id 主键
* @property int level 等级
* @property int content 内容
* @property float recharge_amount 充值金额
* @property float chip_multiple 打码量倍数
* @property float bet_rebate_amount 返水所需打码量额度
* @property float bet_rebate_ratio 打码量返水比值
* @property float damage_rebate_ratio 客损返水比值
* @property string created_at 创建时间
* @property string updated_at 最后一次修改时间
* @package addons\webman\model
*/
class PlayerLevel extends Model
{
use HasDateTimeFormatter;
public function __construct(array $attributes = [])
{
parent::__construct($attributes);
$this->setTable(plugin()->webman->config('database.player_level_table'));
}
}