重新设置抽奖底注金额为1,优化页面样式

This commit is contained in:
2026-03-31 17:23:16 +08:00
parent d54a9c9281
commit 6ed34b97df
24 changed files with 118 additions and 94 deletions

View File

@@ -23,7 +23,7 @@ use think\model\relation\BelongsTo;
* @property $lottery_config_id 彩金池配置
* @property $lottery_type 抽奖类型
* @property $ante 底注/注数dice_ante_config.mult
* @property $paid_amount 付费金额(付费局=ante*100,免费局=0
* @property $paid_amount 付费金额(付费局=ante*1免费局=0
* @property $is_win 是否中大奖:豹子号[1,1,1,1,1]~[6,6,6,6,6]为1否则0
* @property $win_coin 赢取平台币(= super_win_coin + reward_win_coin
* @property $super_win_coin 中大奖平台币(豹子时发放)

View File

@@ -22,7 +22,7 @@ use think\model\relation\BelongsTo;
* @property $is_win 中大奖:0=无,1=中奖
* @property $win_coin 赢取平台币
* @property int|null $ante 底注/注数dice_ante_config.mult
* @property int|null $paid_amount 付费金额(付费局=ante*100,免费局=0
* @property int|null $paid_amount 付费金额(付费局=ante*1免费局=0
* @property $direction 方向:0=顺时针,1=逆时针
* @property $reward_tier 中奖档位T1,T2,T3,T4,T5,BIGWIN
* @property $create_time 创建时间
@@ -113,7 +113,7 @@ class DicePlayRecordTest extends BaseModel
}
}
/** 付费金额(付费局=ante*100,免费局=0 */
/** 付费金额(付费局=ante*1免费局=0 */
public function searchPaidAmountAttr($query, $value)
{
if ($value !== '' && $value !== null) {

View File

@@ -38,7 +38,7 @@ use think\model\relation\HasMany;
* @property array|null $free_tier_weights 免费自定义档位权重 T1-T5
* @property array $result_counts 落点统计 grid_number=>出现次数
* @property array|null $tier_counts 档位出现次数 T1=>count
* @property float|null $platform_profit 平台赚取金额(付费抽取次数×100-玩家总收益)
* @property float|null $platform_profit 平台赚取金额(付费金额 paid_amount 求和-玩家总收益)
* @property array|null $bigwin_weight 测试时 BIGWIN 档位权重快照JSONgrid_number=>weight
* @property int|null $admin_id 执行测试的管理员ID
* @property string|null $create_time 创建时间