修改域名为h55555game.top

This commit is contained in:
2026-04-28 10:24:01 +08:00
parent 40277e677d
commit a7b2f2cd91
61 changed files with 2329 additions and 21 deletions

View File

@@ -0,0 +1,20 @@
-- DiceRewardConfigTest 新表奖励配置T1-T5 按档位+权重直接抽取 grid_number
-- 字段s_end_index 改为 n_start_index逆时针起始索引n_end_index 改为 s_start_index顺时针起始索引
-- weight 取值范围 1-10000各档位权重和不限制
CREATE TABLE IF NOT EXISTS `dice_reward_config_test` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`grid_number` int NOT NULL DEFAULT 0 COMMENT '色子点数',
`ui_text` varchar(64) NOT NULL DEFAULT '' COMMENT '前端显示文本',
`real_ev` decimal(10,2) NOT NULL DEFAULT 0.00 COMMENT '真实资金结算',
`tier` varchar(16) NOT NULL DEFAULT '' COMMENT '所属档位 T1-T5|BIGWIN',
`weight` int unsigned NOT NULL DEFAULT 1 COMMENT '权重 1-10000按档位内权重比抽取 grid_number',
`n_start_index` int NOT NULL DEFAULT 0 COMMENT '逆时针起始索引',
`s_start_index` int NOT NULL DEFAULT 0 COMMENT '顺时针起始索引',
`remark` varchar(255) NOT NULL DEFAULT '',
`type` tinyint NOT NULL DEFAULT 1,
`create_time` datetime DEFAULT NULL,
`update_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_tier` (`tier`),
KEY `idx_grid_number` (`grid_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='奖励配置Test按档位权重抽 grid_numberweight 1-10000';