Files
webman-buildadmin/database/mysql/webman-buildadmin-dafuweng.sql
2026-04-10 18:18:11 +08:00

1268 lines
504 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
Navicat Premium Dump SQL
Source Server : 本地
Source Server Type : MySQL
Source Server Version : 80012 (8.0.12)
Source Host : localhost:3306
Source Schema : webman-buildadmin-dafuweng
Target Server Type : MySQL
Target Server Version : 80012 (8.0.12)
File Encoding : 65001
Date: 10/04/2026 18:17:33
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for admin
-- ----------------------------
DROP TABLE IF EXISTS `admin`;
CREATE TABLE `admin` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`username` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '用户名',
`nickname` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '昵称',
`avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '头像',
`email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '邮箱',
`mobile` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '手机',
`login_failure` tinyint(4) UNSIGNED NOT NULL DEFAULT 0 COMMENT '登录失败次数',
`last_login_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '上次登录时间',
`last_login_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '上次登录IP',
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '密码',
`salt` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '密码盐(废弃待删)',
`motto` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '签名',
`status` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '状态:enable=启用,disable=禁用',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `username`(`username` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '管理员表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of admin
-- ----------------------------
INSERT INTO `admin` VALUES (1, 'admin', 'Admin', '', 'admin@buildadmin.com', '18888888888', 0, 1775815980, '127.0.0.1', '$2y$10$uzDFH1P04rAxP4cy3zhUce.mwrPG9YY/4kZrrvq82LgZ3cpIpXlSS', '', '', 'enable', 1775815980, 1775022962);
INSERT INTO `admin` VALUES (2, 'admin1', '测试渠道超管1', '/storage/default/20260401/100px-页面_宠物_立绘_c1f1c5b029d71c096be47fb91195b8724346f073.png', '', '', 0, 1775815980, '127.0.0.1', '$2y$10$QYX6RKVPacRhqBu0hGrfk.UkdM.R5aPoM68gymWE31Q7FEE74IRZ.', '', '', 'enable', 1775815980, 1775026617);
INSERT INTO `admin` VALUES (3, 'admin2', '游戏测试2组', '', '', '', 0, 1775815980, '127.0.0.1', '$2y$10$/6GXVvDV2AzecpZcY3X7cOJO9DtDtvI4Cjt7YaLpiT37mCbl1jaiS', '', '', 'enable', 1775815980, 1775026658);
INSERT INTO `admin` VALUES (4, 'zhuguan1', '游戏测试1组-主管', '', '', '', 0, 1775807956, '127.0.0.1', '$2y$10$L57nGrOQCic6cU4NZqMsueG/5jUdmjnCQbpqORzr55F52M/0qp7pW', '', '', 'enable', 1775807956, 1775030948);
INSERT INTO `admin` VALUES (5, 'zhuguan2', '游戏测试2组-主管', '', '', '', 0, NULL, '', '$2y$10$ud4tZ0mq9KxD7FBEgIY70.TyfxQHUZFjShK9ReScWrTpx7t7SpR5G', '', '', 'enable', 1775030976, 1775030976);
INSERT INTO `admin` VALUES (6, 'admin3', '测试渠道3管理员', '', '', '', 0, NULL, '', '$2y$10$Ocv5u0CiIo6Sk/QeqcIKd.DsAkaskgsWTAiXGhlGzpsa6WlGtA05u', '', '', 'enable', 1775198081, 1775198081);
-- ----------------------------
-- Table structure for admin_group
-- ----------------------------
DROP TABLE IF EXISTS `admin_group`;
CREATE TABLE `admin_group` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`pid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '上级分组',
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '组名',
`rules` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '权限规则ID',
`status` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 COMMENT '状态:0=禁用,1=启用',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 10 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '管理分组表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of admin_group
-- ----------------------------
INSERT INTO `admin_group` VALUES (1, 0, '超级管理组', '*', 1, 1775022962, 1775022962);
INSERT INTO `admin_group` VALUES (2, 1, '一级管理员', '1,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,77,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,89', 1, 1775022962, 1775022962);
INSERT INTO `admin_group` VALUES (3, 2, '二级管理员', '21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43', 1, 1775022962, 1775022962);
INSERT INTO `admin_group` VALUES (4, 3, '三级管理员', '55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75', 1, 1775022962, 1775022962);
INSERT INTO `admin_group` VALUES (5, 0, '游戏测试1组', '1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,115,120,119,118,117,116,103,108,107,106,105,104,97,102,101,100,99,98,91,96,95,94,93,92', 1, 1775815352, 1775026281);
INSERT INTO `admin_group` VALUES (6, 0, '游戏测试2组', '1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,115,120,119,118,117,116,103,108,107,106,105,104,97,102,101,100,99,98,91,96,95,94,93,92', 1, 1775815346, 1775026316);
INSERT INTO `admin_group` VALUES (7, 5, '游戏测试1组-主管', '1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,104,98,92,90,103,97,91', 1, 1775098629, 1775030867);
INSERT INTO `admin_group` VALUES (8, 6, '游戏测试2组-主管', '1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,104,98,92,90,103,97,91', 1, 1775098640, 1775030892);
INSERT INTO `admin_group` VALUES (9, 0, '游戏测试3组', '1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,103,108,107,106,105,104,97,102,101,100,99,98,91,96,95,94,93,92', 1, 1775098646, 1775030906);
-- ----------------------------
-- Table structure for admin_group_access
-- ----------------------------
DROP TABLE IF EXISTS `admin_group_access`;
CREATE TABLE `admin_group_access` (
`uid` int(11) UNSIGNED NOT NULL COMMENT '管理员ID',
`group_id` int(11) UNSIGNED NOT NULL COMMENT '分组ID',
INDEX `uid`(`uid` ASC) USING BTREE,
INDEX `group_id`(`group_id` ASC) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '管理分组映射表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of admin_group_access
-- ----------------------------
INSERT INTO `admin_group_access` VALUES (1, 1);
INSERT INTO `admin_group_access` VALUES (2, 5);
INSERT INTO `admin_group_access` VALUES (3, 6);
INSERT INTO `admin_group_access` VALUES (4, 7);
INSERT INTO `admin_group_access` VALUES (5, 8);
INSERT INTO `admin_group_access` VALUES (6, 9);
-- ----------------------------
-- Table structure for admin_log
-- ----------------------------
DROP TABLE IF EXISTS `admin_log`;
CREATE TABLE `admin_log` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`admin_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '管理员ID',
`username` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '管理员用户名',
`url` varchar(1500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '操作Url',
`title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '日志标题',
`data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '请求数据',
`ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'IP',
`useragent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'User-Agent',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 241 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '管理员日志表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of admin_log
-- ----------------------------
INSERT INTO `admin_log` VALUES (1, 0, '未知', '//localhost:8787/admin/ajax/clearCache', '未知(clearCache)', '{\"type\":\"all\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775023381);
INSERT INTO `admin_log` VALUES (2, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"ac600599-cc79-4df1-9762-198f0f5b68ff\",\"captchaInfo\":\"176,103-91,134;350;200\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775023400);
INSERT INTO `admin_log` VALUES (3, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"8313cbd7-f9e8-4d7c-a0da-d64db43f3b6d\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775023754);
INSERT INTO `admin_log` VALUES (4, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_channel\",\"connection\":null,\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/channel\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Channel.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775024539);
INSERT INTO `admin_log` VALUES (5, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', '未知(generate)', '{\"type\":\"create\",\"table\":{\"name\":\"game_channel\",\"comment\":\"渠道管理\",\"quickSearchField\":[\"id\",\"code\",\"name\"],\"defaultSortField\":\"id\",\"formFields\":[\"name\",\"remark\",\"admin_id\",\"status\",\"code\"],\"columnFields\":[\"id\",\"name\",\"user_count\",\"profit_amount\",\"create_time\",\"update_time\",\"status\",\"code\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_channel\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameChannel.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Channel.php\",\"validateFile\":\"app\\/common\\/validate\\/GameChannel.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/channel\",\"databaseConnection\":null,\"designChange\":[],\"rebuild\":\"No\"},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"e590c47d-3de8-4b9d-9233-35037259c31b\"},{\"title\":\"字符串\",\"name\":\"code\",\"comment\":\"渠道标识\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"b0db6092-45ad-4784-b549-d5c7595100df\"},{\"title\":\"字符串\",\"name\":\"name\",\"comment\":\"渠道\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"6e3d7775-939a-48c6-862b-912b961cdee9\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"admin_id\",\"comment\":\"渠道管理员\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"admin\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\auth\\\\Admin.php\",\"remote-model\":\"app\\\\admin\\\\model\\\\Admin.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"2a2d1bac-6406-4488-8626-760b0504f5b7\"},{\"title\":\"数字\",\"name\":\"user_count\",\"comment\":\"用户数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"integer\"],\"validatorMsg\":\"\",\"step\":1},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"8e98e5e0-6300-4c91-91d1-013b45ee5025\"},{\"title\":\"浮点数\",\"name\":\"profit_amount\",\"type\":\"decimal\",\"length\":5,\"precision\":2,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"利润\",\"designType\":\"float\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"float\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"6aa38660-d9ea-4242-b3fd-35f5bb3d61dc\"},{\"title\":\"状态\",\"name\":\"status\",\"comment\":\"状态:0=禁用,1=启用\",\"designType\":\"switch\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"switch\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"tinyint\",\"length\":1,\"precision\":0,\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"d1c4c3ee-2824-481e-b104-0870d26cc0c0\"},{\"title\":\"备注\",\"name\":\"remark\",\"comment\":\"备注\",\"designType\":\"textarea\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"e32dfa84-9af7-40b3-b56f-852a125a96fa\"},{\"title\":\"创建时间\",\"name\":\"create_time\",\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"20111342-c41b-4f9d-bd61-412c3caba959\"},{\"title\":\"修改时间\",\"name\":\"update_time\",\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"593a8557-fe89-4ffe-95b2-91523e8feea7\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775024539);
INSERT INTO `admin_log` VALUES (6, 1, 'admin', '//localhost:8787/admin/game.Channel/add', '未知(add)', '{\"status\":\"1\",\"admin_id\":\"1\",\"code\":\"test_game\",\"name\":\"测试渠道\",\"remark\":\"这是测试渠道\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775025725);
INSERT INTO `admin_log` VALUES (7, 1, 'admin', '//localhost:8787/admin/game.Channel/add', '未知(add)', '{\"status\":\"1\",\"admin_id\":\"1\",\"code\":\"test_game\",\"name\":\"测试渠道\",\"remark\":\"这是测试渠道\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775025976);
INSERT INTO `admin_log` VALUES (8, 1, 'admin', '//localhost:8787/admin/auth.Group/add', '未知(add)', '{\"status\":1,\"pid\":0,\"name\":\"游戏测试组\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,91,96,95,94,93,92]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026281);
INSERT INTO `admin_log` VALUES (9, 1, 'admin', '//localhost:8787/admin/auth.Group/add', '未知(add)', '{\"status\":1,\"pid\":0,\"name\":\"游戏测试2组\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,91,96,95,94,93,92]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026316);
INSERT INTO `admin_log` VALUES (10, 1, 'admin', '//localhost:8787/admin/crud.Crud/logStart', 'CRUD代码生成-从历史记录开始', '{\"id\":1,\"type\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026328);
INSERT INTO `admin_log` VALUES (11, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_channel\",\"connection\":null,\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/channel\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Channel.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026506);
INSERT INTO `admin_log` VALUES (12, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', '未知(generate)', '{\"type\":\"log\",\"table\":{\"name\":\"game_channel\",\"comment\":\"渠道管理\",\"quickSearchField\":[\"id\",\"code\",\"name\"],\"defaultSortField\":\"id\",\"formFields\":[\"name\",\"remark\",\"status\",\"code\",\"admin_group_id\",\"admin_id\"],\"columnFields\":[\"id\",\"name\",\"user_count\",\"profit_amount\",\"create_time\",\"update_time\",\"status\",\"code\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_channel\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameChannel.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Channel.php\",\"validateFile\":\"app\\/common\\/validate\\/GameChannel.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/channel\",\"databaseConnection\":null,\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"admin_id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":9,\"newName\":\"admin_group_id\",\"oldName\":\"\",\"after\":\"remark\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":2,\"oldName\":\"name\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":10,\"newName\":\"admin_id\",\"oldName\":\"\",\"after\":\"remark\",\"sync\":true}],\"rebuild\":\"No\",\"empty\":false},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"066f98c0-db0c-4bed-9e44-e6fd3531df99\"},{\"title\":\"字符串\",\"name\":\"code\",\"comment\":\"渠道标识\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"21702f5c-5084-4d09-b591-a16d5702a9d0\"},{\"title\":\"字符串\",\"name\":\"name\",\"comment\":\"渠道名\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"e9a5b2d2-b2bb-4466-afed-85b6889e33a9\"},{\"title\":\"数字\",\"name\":\"user_count\",\"comment\":\"用户数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"integer\"],\"validatorMsg\":\"\",\"step\":1},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"2d3cfddd-97a7-44db-a76b-cd4fce580fa3\"},{\"title\":\"浮点数\",\"name\":\"profit_amount\",\"type\":\"decimal\",\"length\":5,\"precision\":2,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"利润\",\"designType\":\"float\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"float\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"a430ad3f-bf61-4be9-b63e-3decb371e8de\"},{\"title\":\"状态\",\"name\":\"status\",\"comment\":\"状态:0=禁用,1=启用\",\"designType\":\"switch\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"switch\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"tinyint\",\"length\":1,\"precision\":0,\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"c07946b5-27f3-4d51-a347-a2a614d580ef\"},{\"title\":\"备注\",\"name\":\"remark\",\"comment\":\"备注\",\"designType\":\"textarea\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"ab09ed37-30a4-48b4-a524-2c021f13cc5d\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"admin_group_id\",\"comment\":\"管理角色组\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"admin_group\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\auth\\\\Group.php\",\"remote-model\":\"app\\\\admin\\\\model\\\\AdminGroup.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"def64dda-5b7a-4cb3-9d83-688d370c3d77\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"admin_id\",\"comment\":\"管理员\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"admin\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\auth\\\\Admin.php\",\"remote-model\":\"app\\\\admin\\\\model\\\\Admin.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"357d99cd-1bf5-4759-b733-e4fa16332b71\"},{\"title\":\"创建时间\",\"name\":\"create_time\",\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"a377a7cd-3c68-4b7a-a129-d62b0a3b61c3\"},{\"title\":\"修改时间\",\"name\":\"update_time\",\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"775b1311-c9d6-4640-a5c6-8bbaabbaa00a\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026508);
INSERT INTO `admin_log` VALUES (13, 1, 'admin', '//localhost:8787/admin/game.Channel/edit', '未知(edit)', '{\"id\":1,\"code\":\"test_game_one\",\"name\":\"测试渠道1\",\"user_count\":null,\"profit_amount\":null,\"status\":1,\"remark\":\"这是测试渠道1\",\"admin_id\":\"1\",\"admin_group_id\":\"5\",\"create_time\":1775025976,\"update_time\":1775025976}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026582);
INSERT INTO `admin_log` VALUES (14, 1, 'admin', '//localhost:8787/admin/ajax/upload', '上传文件', '{\"uuid\":\"617e2e1f-d939-4e8e-9751-6b28befacaf1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026612);
INSERT INTO `admin_log` VALUES (15, 1, 'admin', '//localhost:8787/admin/auth.Admin/add', '未知(add)', '{\"status\":\"enable\",\"group_arr\":[\"5\"],\"username\":\"admin1\",\"nickname\":\"测试渠道超管1\",\"avatar\":\"\\/storage\\/default\\/20260401\\/100px-页面_宠物_立绘_c1f1c5b029d71c096be47fb91195b8724346f073.png\",\"password\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026617);
INSERT INTO `admin_log` VALUES (16, 1, 'admin', '//localhost:8787/admin/auth.Group/edit', '未知(edit)', '{\"id\":5,\"pid\":0,\"name\":\"游戏测试1组\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,91,96,95,94,93,92],\"status\":1,\"update_time\":1775026281,\"create_time\":1775026281}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026629);
INSERT INTO `admin_log` VALUES (17, 1, 'admin', '//localhost:8787/admin/auth.Admin/add', '未知(add)', '{\"status\":\"enable\",\"group_arr\":[\"6\"],\"username\":\"admin2\",\"nickname\":\"游戏测试2组\",\"password\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026658);
INSERT INTO `admin_log` VALUES (18, 1, 'admin', '//localhost:8787/admin/game.Channel/edit', '未知(edit)', '{\"id\":1,\"code\":\"test_game_one\",\"name\":\"测试渠道1\",\"user_count\":null,\"profit_amount\":null,\"status\":1,\"remark\":\"这是测试渠道1\",\"admin_id\":\"2\",\"admin_group_id\":\"5\",\"create_time\":1775025976,\"update_time\":1775026582}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026673);
INSERT INTO `admin_log` VALUES (19, 1, 'admin', '//localhost:8787/admin/game.Channel/add', '未知(add)', '{\"status\":\"1\",\"admin_group_id\":\"6\",\"admin_id\":\"3\",\"code\":\"test_game_two\",\"name\":\"测试渠道2\",\"remark\":\"这是测试渠道2\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026721);
INSERT INTO `admin_log` VALUES (20, 1, 'admin', '//localhost:8787/admin/crud.Crud/logStart', 'CRUD代码生成-从历史记录开始', '{\"id\":2,\"type\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775026808);
INSERT INTO `admin_log` VALUES (21, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_user\",\"connection\":null,\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/user\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/User.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775028742);
INSERT INTO `admin_log` VALUES (22, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', '未知(generate)', '{\"type\":\"create\",\"table\":{\"name\":\"game_user\",\"comment\":\"用户管理\",\"quickSearchField\":[\"id\",\"username\",\"phone\"],\"defaultSortField\":\"id\",\"formFields\":[\"username\",\"password\",\"phone\",\"remark\",\"coin\",\"game_channel_id\",\"admin_id\"],\"columnFields\":[\"id\",\"username\",\"uuid\",\"phone\",\"coin\",\"create_time\",\"create_time1\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_user\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameUser.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/User.php\",\"validateFile\":\"app\\/common\\/validate\\/GameUser.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/user\",\"databaseConnection\":null,\"designChange\":[],\"rebuild\":\"No\"},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"23e7b867-f93b-40cf-8439-a676d9c238df\"},{\"title\":\"字符串\",\"name\":\"username\",\"comment\":\"用户名\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"eb47efa5-4e6f-47ec-a8b7-13b17781a0c0\"},{\"title\":\"密码\",\"name\":\"password\",\"comment\":\"密码\",\"designType\":\"password\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"password\",\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":32,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"a195c88f-7fec-4796-97ed-0ec9f8df1254\"},{\"title\":\"字符串\",\"name\":\"uuid\",\"comment\":\"用户唯一标识\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"e111afbd-eba4-443f-a270-8d2026ec196a\"},{\"title\":\"字符串\",\"name\":\"phone\",\"comment\":\"手机号\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"84637a97-ab2d-4808-a75d-a9ed08388b22\"},{\"title\":\"备注\",\"name\":\"remark\",\"comment\":\"备注\",\"designType\":\"textarea\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"cdadfaaf-4d14-43ef-bea4-f569a5944b1c\"},{\"title\":\"浮点数\",\"name\":\"coin\",\"type\":\"decimal\",\"length\":5,\"precision\":2,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"平台币\",\"designType\":\"float\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1a6ba5f5-3d4d-4041-91ad-9cbe5746a038\",\"default\":\"0\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"game_channel_id\",\"comment\":\"所属渠道\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"07125609-9800-4335-a6a5-7afb0e0b538c\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"admin_id\",\"comment\":\"所属管理员\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"admin\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\auth\\\\Admin.php\",\"remote-model\":\"app\\\\admin\\\\model\\\\Admin.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"5c411d6c-3af7-4734-920b-b0b8f8f170ec\"},{\"title\":\"创建时间\",\"name\":\"create_time\",\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"4d0e2cf6-b034-4153-9191-22305375f1c0\"},{\"title\":\"创建时间\",\"name\":\"create_time1\",\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"2c7c0661-779d-4fd9-99ce-2845b3be99cb\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775028742);
INSERT INTO `admin_log` VALUES (23, 1, 'admin', '//localhost:8787/admin/game.User/add', '未知(add)', '{\"game_channel_id\":\"1\",\"admin_id\":\"2\",\"username\":\"+60123456789\",\"password\":\"***\",\"phone\":\"+60123456789\",\"remark\":\"测试渠道1用户名+60123456789\",\"coin\":0}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775028800);
INSERT INTO `admin_log` VALUES (24, 1, 'admin', '//localhost:8787/admin/crud.Crud/logStart', 'CRUD代码生成-从历史记录开始', '{\"id\":3,\"type\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775028883);
INSERT INTO `admin_log` VALUES (25, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_user\",\"connection\":null,\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/user\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/User.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775028905);
INSERT INTO `admin_log` VALUES (26, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', '未知(generate)', '{\"type\":\"log\",\"table\":{\"name\":\"game_user\",\"comment\":\"用户管理\",\"quickSearchField\":[\"id\",\"username\",\"phone\"],\"defaultSortField\":\"id\",\"formFields\":[\"username\",\"password\",\"phone\",\"remark\",\"coin\",\"game_channel_id\",\"admin_id\"],\"columnFields\":[\"id\",\"username\",\"uuid\",\"phone\",\"coin\",\"create_time\",\"update_time\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_user\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameUser.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/User.php\",\"validateFile\":\"app\\/common\\/validate\\/GameUser.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/user\",\"databaseConnection\":null,\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"create_time1\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":10,\"newName\":\"update_time\",\"oldName\":\"\",\"after\":\"create_time\",\"sync\":true}],\"rebuild\":\"No\",\"empty\":false},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"cfc0d93c-abaf-4179-bb6c-be5bc26757dd\"},{\"title\":\"字符串\",\"name\":\"username\",\"comment\":\"用户名\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"3f9d2698-2a74-4a30-84f9-9f3e5e534ef2\"},{\"title\":\"密码\",\"name\":\"password\",\"comment\":\"密码\",\"designType\":\"password\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"password\",\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":32,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"f05054fa-69ad-4871-abb6-2dab683c0c18\"},{\"title\":\"字符串\",\"name\":\"uuid\",\"comment\":\"用户唯一标识\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"d5ef457b-06eb-4912-bd38-9af2ada3f4ec\"},{\"title\":\"字符串\",\"name\":\"phone\",\"comment\":\"手机号\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"a561f6c6-6001-4ce1-a092-24bc43d51ceb\"},{\"title\":\"备注\",\"name\":\"remark\",\"comment\":\"备注\",\"designType\":\"textarea\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"f2b38bad-3d67-4141-ae33-6dd07c65ffec\"},{\"title\":\"浮点数\",\"name\":\"coin\",\"type\":\"decimal\",\"length\":5,\"precision\":2,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"平台币\",\"designType\":\"float\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"c21513d6-73cd-409e-ac49-9b18dc607cef\",\"default\":\"0\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"game_channel_id\",\"comment\":\"所属渠道\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"051b1b92-db3e-4b2b-8197-00cc58753cb4\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"admin_id\",\"comment\":\"所属管理员\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"admin\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\auth\\\\Admin.php\",\"remote-model\":\"app\\\\admin\\\\model\\\\Admin.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"9b729ae2-ae31-43ff-9863-719c9758e5ee\"},{\"title\":\"创建时间\",\"name\":\"create_time\",\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"f3b8556c-552c-4ca3-b174-cf3e9dbe656a\"},{\"title\":\"修改时间\",\"name\":\"update_time\",\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"57bb21c4-4694-4106-bbcc-1c93750b6c3a\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775028907);
INSERT INTO `admin_log` VALUES (27, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029558);
INSERT INTO `admin_log` VALUES (28, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029591);
INSERT INTO `admin_log` VALUES (29, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"username\":\"+60123456789\",\"password\":\"***\",\"uuid\":\"\",\"phone\":\"+60123456789\",\"remark\":\"测试渠道1用户名+60123456789\",\"coin\":0,\"head_image\":null,\"game_channel_id\":\"1\",\"admin_id\":\"2\",\"status\":true,\"create_time\":1775028800,\"update_time\":null}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029631);
INSERT INTO `admin_log` VALUES (30, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029631);
INSERT INTO `admin_log` VALUES (31, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029633);
INSERT INTO `admin_log` VALUES (32, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029665);
INSERT INTO `admin_log` VALUES (33, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029666);
INSERT INTO `admin_log` VALUES (34, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029668);
INSERT INTO `admin_log` VALUES (35, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029677);
INSERT INTO `admin_log` VALUES (36, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029725);
INSERT INTO `admin_log` VALUES (37, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029727);
INSERT INTO `admin_log` VALUES (38, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029728);
INSERT INTO `admin_log` VALUES (39, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029746);
INSERT INTO `admin_log` VALUES (40, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029748);
INSERT INTO `admin_log` VALUES (41, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029803);
INSERT INTO `admin_log` VALUES (42, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"0\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029804);
INSERT INTO `admin_log` VALUES (43, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":1,\"status\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775029804);
INSERT INTO `admin_log` VALUES (44, 1, 'admin', '//localhost:8787/admin/game.User/add', '未知(add)', '{\"status\":\"1\",\"game_channel_id\":\"1\",\"admin_id\":\"2\",\"username\":\"+60123456788\",\"password\":\"***\",\"phone\":\"+60123456788\",\"remark\":\"测试渠道1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775030236);
INSERT INTO `admin_log` VALUES (45, 1, 'admin', '//localhost:8787/admin/game.User/add', '未知(add)', '{\"status\":\"1\",\"game_channel_id\":\"1\",\"admin_id\":\"2\",\"username\":\"+60123456788\",\"password\":\"***\",\"phone\":\"+60123456788\",\"remark\":\"测试渠道1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775030248);
INSERT INTO `admin_log` VALUES (46, 1, 'admin', '//localhost:8787/admin/auth.Rule/edit', '未知(edit)', '{\"id\":90,\"pid\":0,\"type\":\"menu_dir\",\"title\":\"游戏管理\",\"name\":\"game\",\"path\":\"game\",\"icon\":\"fa fa-circle-o\",\"menu_type\":null,\"url\":\"\",\"component\":\"\",\"keepalive\":0,\"extend\":\"none\",\"remark\":\"\",\"weigh\":0,\"status\":1,\"update_time\":1775024539,\"create_time\":1775024539}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775030351);
INSERT INTO `admin_log` VALUES (47, 1, 'admin', '//localhost:8787/admin/auth.Group/add', '未知(add)', '{\"status\":1,\"pid\":\"5\",\"name\":\"游戏测试1组-主管\",\"rules\":[1,89,97,102,101,100,99,98,90]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775030867);
INSERT INTO `admin_log` VALUES (48, 1, 'admin', '//localhost:8787/admin/auth.Group/edit', '未知(edit)', '{\"id\":7,\"pid\":\"5\",\"name\":\"游戏测试1组-主管\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,97,102,101,100,99,98,90],\"status\":1,\"update_time\":1775030867,\"create_time\":1775030867}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775030873);
INSERT INTO `admin_log` VALUES (49, 1, 'admin', '//localhost:8787/admin/auth.Group/add', '未知(add)', '{\"status\":1,\"pid\":\"6\",\"name\":\"游戏测试2组-主管\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,97,102,101,100,99,98,90]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775030892);
INSERT INTO `admin_log` VALUES (50, 1, 'admin', '//localhost:8787/admin/auth.Group/add', '未知(add)', '{\"status\":1,\"pid\":0,\"name\":\"游戏测试3组\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,97,102,101,100,99,98,91,96,95,94,93,92]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775030906);
INSERT INTO `admin_log` VALUES (51, 1, 'admin', '//localhost:8787/admin/auth.Admin/add', '未知(add)', '{\"status\":\"enable\",\"group_arr\":[\"7\"],\"username\":\"zhuguan1\",\"nickname\":\"游戏测试1组-主管\",\"password\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775030948);
INSERT INTO `admin_log` VALUES (52, 1, 'admin', '//localhost:8787/admin/auth.Admin/add', '未知(add)', '{\"status\":\"enable\",\"group_arr\":[\"8\"],\"username\":\"zhuguan2\",\"nickname\":\"游戏测试2组-主管\",\"password\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775030976);
INSERT INTO `admin_log` VALUES (53, 1, 'admin', '//localhost:8787/admin/game.User/edit', '未知(edit)', '{\"id\":2,\"username\":\"+60123456788\",\"password\":\"***\",\"uuid\":\"016168792eb933d58ba93f4dfecb10d5\",\"phone\":\"+60123456788\",\"remark\":\"测试渠道1\",\"coin\":0,\"head_image\":null,\"game_channel_id\":\"1\",\"admin_id\":\"2\",\"status\":1,\"create_time\":1775030248,\"update_time\":1775030248,\"salt\":\"***\",\"token\":\"***\",\"refresh_token\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775031920);
INSERT INTO `admin_log` VALUES (54, 1, 'admin', '//localhost:8787/admin/game.User/add', '未知(add)', '{\"status\":\"1\",\"username\":\"+60111111111\",\"password\":\"***\",\"admin_id\":\"3\",\"game_channel_id\":2,\"phone\":\"+60111111111\",\"remark\":\"测试渠道2用户+60111111111\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775032301);
INSERT INTO `admin_log` VALUES (55, 1, 'admin', '//localhost:8787/admin/crud.Crud/parseFieldData', 'CRUD代码生成-解析字段数据', '{\"type\":\"db\",\"table\":\"game_config\",\"sql\":\"\",\"connection\":\"mysql\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775096413);
INSERT INTO `admin_log` VALUES (56, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_config\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/config\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Config.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775096581);
INSERT INTO `admin_log` VALUES (57, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', '未知(generate)', '{\"type\":\"db\",\"table\":{\"name\":\"game_config\",\"comment\":\"游戏配置\",\"quickSearchField\":[\"ID\"],\"defaultSortField\":\"group\",\"formFields\":[\"ID\",\"channel_id\",\"group\",\"name\",\"title\",\"value\",\"sort\",\"instantiation\"],\"columnFields\":[\"ID\",\"channel_id\",\"group\",\"name\",\"title\",\"sort\",\"instantiation\",\"create_time\",\"update_time\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_config\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameConfig.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Config.php\",\"validateFile\":\"app\\/common\\/validate\\/GameConfig.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/config\",\"databaseConnection\":\"mysql\",\"designChange\":[],\"rebuild\":\"No\"},\"fields\":[{\"name\":\"ID\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"4b9f73eb-bf59-46ff-83ab-0f34d29261ae\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"a593b99c-6b95-4a60-a7a0-b9bed6d45f48\"},{\"name\":\"group\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"分组\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"1558356e-dca9-4dc0-a5da-b94a886ed11b\"},{\"name\":\"name\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"配置标识\",\"designType\":\"string\",\"table\":{\"render\":\"tag\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"fc3fe0ae-98a3-4319-9f33-4a1001c72407\"},{\"name\":\"title\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"配置名称\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"3e458894-85d3-4f3e-8502-856dd3848f6b\"},{\"name\":\"value\",\"type\":\"longtext\",\"dataType\":\"longtext\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"值\",\"designType\":\"textarea\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"uuid\":\"2165edaf-c69a-4254-a3bb-d0c0ca1e9f44\"},{\"name\":\"sort\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"100\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"排序\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"46259d2b-cecf-4b47-9285-f2c9f4ef0fe8\"},{\"name\":\"instantiation\",\"type\":\"tinyint\",\"dataType\":\"tinyint(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"实例化:0=不需要,1=需要\",\"designType\":\"switch\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\"},\"uuid\":\"017e24ea-8e27-4ad4-88e0-6aaca261f2ab\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"55354f91-e37e-45ef-80eb-f3096e30fe4a\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"更新时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"bf992ced-0322-4cdb-b111-fd7c8c7175a6\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775096581);
INSERT INTO `admin_log` VALUES (58, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '未知(edit)', '{\"ID\":3,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_tier_weight\",\"title\":\"默认中奖权重\",\"value\":\"[{\\\"T1\\\":\\\"5\\\"},{\\\"T2\\\":\\\"20},{\\\"T3\\\":\\\"70\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":null}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775096605);
INSERT INTO `admin_log` VALUES (59, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '未知(edit)', '{\"ID\":4,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":null}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775096611);
INSERT INTO `admin_log` VALUES (60, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '未知(edit)', '{\"ID\":5,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_kill_score_weight\",\"title\":\"默认杀分权重\",\"value\":\"[{\\\"T1\\\":\\\"0\\\"},{\\\"T2\\\":\\\"0\\\"},{\\\"T3\\\":\\\"70\\\"},{\\\"T4\\\":\\\"30\\\"},{\\\"T5\\\":\\\"0\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":null}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775096616);
INSERT INTO `admin_log` VALUES (61, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '未知(edit)', '{\"ID\":1,\"channel_id\":\"1\",\"group\":\"game_config\",\"name\":\"game_rule\",\"title\":\"游戏规则\",\"value\":\"这是游戏规则\",\"sort\":50,\"instantiation\":0,\"create_time\":null,\"update_time\":null}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775096620);
INSERT INTO `admin_log` VALUES (62, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '未知(edit)', '{\"ID\":2,\"channel_id\":\"1\",\"group\":\"game_config\",\"name\":\"game_rule_en\",\"title\":\"Game Rule\",\"value\":\"这是游戏规则\",\"sort\":50,\"instantiation\":0,\"create_time\":null,\"update_time\":null}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775096625);
INSERT INTO `admin_log` VALUES (63, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '未知(edit)', '{\"ID\":3,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_tier_weight\",\"title\":\"默认中奖权重\",\"value\":\"[{\\\"T1\\\":\\\"5\\\"},{\\\"T2\\\":\\\"20\\\"},{\\\"T3\\\":\\\"70\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096605}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775097681);
INSERT INTO `admin_log` VALUES (64, 2, 'admin1', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin1\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"6c4693ef-fa54-4da1-96e5-55d95a96de97\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1775098501);
INSERT INTO `admin_log` VALUES (65, 1, 'admin', '//localhost:8787/admin/auth.Group/edit', '未知(edit)', '{\"id\":5,\"pid\":0,\"name\":\"游戏测试1组\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,103,108,107,106,105,104,97,102,101,100,99,98,91,96,95,94,93,92],\"status\":1,\"update_time\":1775026629,\"create_time\":1775026281}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775098598);
INSERT INTO `admin_log` VALUES (66, 1, 'admin', '//localhost:8787/admin/auth.Group/edit', '未知(edit)', '{\"id\":5,\"pid\":0,\"name\":\"游戏测试1组\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,103,108,107,106,105,104,97,102,101,100,99,98,91,96,95,94,93,92],\"status\":1,\"update_time\":1775098598,\"create_time\":1775026281}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775098606);
INSERT INTO `admin_log` VALUES (67, 1, 'admin', '//localhost:8787/admin/auth.Group/edit', '未知(edit)', '{\"id\":6,\"pid\":0,\"name\":\"游戏测试2组\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,103,108,107,106,105,104,97,102,101,100,99,98,91,96,95,94,93,92],\"status\":1,\"update_time\":1775026316,\"create_time\":1775026316}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775098619);
INSERT INTO `admin_log` VALUES (68, 1, 'admin', '//localhost:8787/admin/auth.Group/edit', '未知(edit)', '{\"id\":7,\"pid\":\"5\",\"name\":\"游戏测试1组-主管\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,104,98,92,90,103,97,91],\"status\":1,\"update_time\":1775030873,\"create_time\":1775030867}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775098629);
INSERT INTO `admin_log` VALUES (69, 1, 'admin', '//localhost:8787/admin/auth.Group/edit', '未知(edit)', '{\"id\":8,\"pid\":\"6\",\"name\":\"游戏测试2组-主管\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,104,98,92,90,103,97,91],\"status\":1,\"update_time\":1775030892,\"create_time\":1775030892}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775098640);
INSERT INTO `admin_log` VALUES (70, 1, 'admin', '//localhost:8787/admin/auth.Group/edit', '未知(edit)', '{\"id\":9,\"pid\":0,\"name\":\"游戏测试3组\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,103,108,107,106,105,104,97,102,101,100,99,98,91,96,95,94,93,92],\"status\":1,\"update_time\":1775030906,\"create_time\":1775030906}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775098646);
INSERT INTO `admin_log` VALUES (71, 0, 'zhuguan1', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"zhuguan1\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"6a38d80c-411d-401a-8ebe-3e7601257550\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0', 1775099663);
INSERT INTO `admin_log` VALUES (72, 4, 'zhuguan1', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"zhuguan1\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"6a38d80c-411d-401a-8ebe-3e7601257550\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0', 1775099665);
INSERT INTO `admin_log` VALUES (73, 2, 'admin1', '//localhost:8787/admin/game.User/edit', '用户管理-编辑', '{\"id\":2,\"game_channel_id\":1,\"username\":\"+60123456788\",\"password\":\"***\",\"uuid\":\"016168792eb933d58ba93f4dfecb10d5\",\"phone\":\"+60123456788\",\"remark\":\"测试渠道1\",\"coin\":0,\"head_image\":null,\"admin_id\":\"2\",\"status\":1,\"tier_weight\":\"\",\"bigwin_weight\":\"\",\"ticket_count\":null,\"create_time\":1775030248,\"update_time\":1775031920,\"salt\":\"***\",\"token\":\"***\",\"refresh_token\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1775100018);
INSERT INTO `admin_log` VALUES (74, 2, 'admin1', '//localhost:8787/admin/game.User/edit', '用户管理-编辑', '{\"id\":1,\"game_channel_id\":1,\"username\":\"+60123456789\",\"password\":\"***\",\"uuid\":\"\",\"phone\":\"+60123456789\",\"remark\":\"测试渠道1用户名+60123456789\",\"coin\":0,\"head_image\":null,\"admin_id\":\"4\",\"status\":1,\"tier_weight\":\"\",\"bigwin_weight\":\"\",\"ticket_count\":null,\"create_time\":1775028800,\"update_time\":1775029804,\"salt\":\"***\",\"token\":\"***\",\"refresh_token\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1775100033);
INSERT INTO `admin_log` VALUES (75, 0, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"e16248b7-3f89-4f62-a759-07bbe95d14f1\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775120289);
INSERT INTO `admin_log` VALUES (76, 0, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"e16248b7-3f89-4f62-a759-07bbe95d14f1\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775120291);
INSERT INTO `admin_log` VALUES (77, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"e16248b7-3f89-4f62-a759-07bbe95d14f1\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775120294);
INSERT INTO `admin_log` VALUES (78, 1, 'admin', '//localhost:8787/admin/ajax/clearCache', '清理缓存', '{\"type\":\"all\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775123627);
INSERT INTO `admin_log` VALUES (79, 0, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"47f2bb39-a9c1-445c-b2b3-eb12bef2b405\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775180273);
INSERT INTO `admin_log` VALUES (80, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"47f2bb39-a9c1-445c-b2b3-eb12bef2b405\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775180276);
INSERT INTO `admin_log` VALUES (81, 1, 'admin', '//localhost:8787/admin/crud.Crud/parseFieldData', 'CRUD代码生成-解析字段数据', '{\"type\":\"db\",\"table\":\"game_play_record\",\"sql\":\"\",\"connection\":\"mysql\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775180842);
INSERT INTO `admin_log` VALUES (82, 0, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"af1ed18a-bcdf-4d23-99ee-e044dd3a38a7\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775195796);
INSERT INTO `admin_log` VALUES (83, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"af1ed18a-bcdf-4d23-99ee-e044dd3a38a7\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775195803);
INSERT INTO `admin_log` VALUES (84, 1, 'admin', '//localhost:8787/admin/game.User/add', '用户管理-添加', '{\"status\":\"1\",\"tier_weight\":\"[{\\\"T1\\\":\\\"1\\\"},{\\\"T2\\\":\\\"20\\\"},{\\\"T3\\\":\\\"74\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"bigwin_weight\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"ticket_count\":\"[{\\\"ante\\\":1,\\\"count\\\":1}]\",\"username\":\"+601111111\",\"password\":\"***\",\"admin_id\":2,\"game_channel_id\":1,\"phone\":\"+60111111111\",\"coin\":1000}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775195864);
INSERT INTO `admin_log` VALUES (85, 1, 'admin', '//localhost:8787/admin/game.User/add', '用户管理-添加', '{\"status\":\"1\",\"tier_weight\":\"[{\\\"T1\\\":\\\"1\\\"},{\\\"T2\\\":\\\"20\\\"},{\\\"T3\\\":\\\"74\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"bigwin_weight\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"ticket_count\":\"\",\"username\":\"+60111111111\",\"password\":\"***\",\"phone\":\"+60111111111\",\"remark\":\"测试账户\",\"coin\":5000,\"admin_id\":2,\"game_channel_id\":1}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775197894);
INSERT INTO `admin_log` VALUES (86, 1, 'admin', '//localhost:8787/admin/game.Channel/add', '渠道管理-添加', '{\"status\":\"1\",\"admin_id\":\"1\",\"code\":\"test_game_three\",\"name\":\"测试渠道3\",\"remark\":\"测试是否自动写入游戏配置\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775197964);
INSERT INTO `admin_log` VALUES (87, 1, 'admin', '//localhost:8787/admin/auth.Admin/add', '管理员管理-添加', '{\"status\":\"enable\",\"group_arr\":[\"9\"],\"username\":\"admin3\",\"nickname\":\"测试渠道3管理员\",\"password\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775198081);
INSERT INTO `admin_log` VALUES (88, 1, 'admin', '//localhost:8787/admin/game.Channel/del', '渠道管理-删除', '{\"ids\":[\"3\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775198089);
INSERT INTO `admin_log` VALUES (89, 1, 'admin', '//localhost:8787/admin/game.Channel/add', '渠道管理-添加', '{\"status\":\"1\",\"admin_id\":\"6\",\"code\":\"test_game_three\",\"name\":\"测试渠道3\",\"remark\":\"测试是否能自动创建游戏配置\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775198121);
INSERT INTO `admin_log` VALUES (90, 0, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"547f6eee-d529-4b62-80d6-6aaea9c51fdf\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775198989);
INSERT INTO `admin_log` VALUES (91, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"547f6eee-d529-4b62-80d6-6aaea9c51fdf\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775198992);
INSERT INTO `admin_log` VALUES (92, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"100\\\"},{\\\"15\\\":\\\"100\\\"},{\\\"20\\\":\\\"100\\\"},{\\\"25\\\":\\\"100\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775199103);
INSERT INTO `admin_log` VALUES (93, 1, 'admin', '//localhost:8787/admin/ajax/clearCache', '清理缓存', '{\"type\":\"all\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775199564);
INSERT INTO `admin_log` VALUES (94, 1, 'admin', '//localhost:8787/admin/game.Channel/del', '渠道管理-删除', '{\"ids\":[\"4\"],\"confirm_cascade\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775199574);
INSERT INTO `admin_log` VALUES (95, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775199916);
INSERT INTO `admin_log` VALUES (96, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775199944);
INSERT INTO `admin_log` VALUES (97, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":9,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_tier_weight\",\"title\":\"默认中奖权重\",\"value\":\"[{\\\"T1\\\":\\\"5\\\"},{\\\"T2\\\":\\\"20\\\"},{\\\"T3\\\":\\\"70\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775097681}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775199950);
INSERT INTO `admin_log` VALUES (98, 1, 'admin', '//localhost:8787/admin/game.Channel/add', '渠道管理-添加', '{\"status\":\"1\",\"admin_id\":\"6\",\"code\":\"test_game_three\",\"name\":\"测试渠道3\",\"remark\":\"测试能否自动添加游戏配置\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775200174);
INSERT INTO `admin_log` VALUES (99, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775200641);
INSERT INTO `admin_log` VALUES (100, 1, 'admin', '//localhost:8787/admin/game.Channel/del', '渠道管理-删除', '{\"ids\":[\"5\"],\"confirm_cascade\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775200664);
INSERT INTO `admin_log` VALUES (101, 1, 'admin', '//localhost:8787/admin/game.Channel/add', '渠道管理-添加', '{\"status\":\"1\",\"admin_id\":\"6\",\"code\":\"test_game_three\",\"name\":\"test_game_three\",\"remark\":\"test_game_three\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775200669);
INSERT INTO `admin_log` VALUES (102, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775201026);
INSERT INTO `admin_log` VALUES (103, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":5,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_kill_score_weight\",\"title\":\"默认杀分权重\",\"value\":\"[{\\\"T1\\\":\\\"0\\\"},{\\\"T2\\\":\\\"0\\\"},{\\\"T3\\\":\\\"70\\\"},{\\\"T4\\\":\\\"30\\\"},{\\\"T5\\\":\\\"0\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096616}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775201048);
INSERT INTO `admin_log` VALUES (104, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775201051);
INSERT INTO `admin_log` VALUES (105, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775201058);
INSERT INTO `admin_log` VALUES (106, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775201090);
INSERT INTO `admin_log` VALUES (107, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775201277);
INSERT INTO `admin_log` VALUES (108, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775201291);
INSERT INTO `admin_log` VALUES (109, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775201295);
INSERT INTO `admin_log` VALUES (110, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775201724);
INSERT INTO `admin_log` VALUES (111, 1, 'admin', '//localhost:8787/admin/ajax/clearCache', '清理缓存', '{\"type\":\"all\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775201736);
INSERT INTO `admin_log` VALUES (112, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775201763);
INSERT INTO `admin_log` VALUES (113, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775202017);
INSERT INTO `admin_log` VALUES (114, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775202323);
INSERT INTO `admin_log` VALUES (115, 1, 'admin', '//localhost:8787/admin/ajax/clearCache', '清理缓存', '{\"type\":\"all\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775202334);
INSERT INTO `admin_log` VALUES (116, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775202344);
INSERT INTO `admin_log` VALUES (117, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775202348);
INSERT INTO `admin_log` VALUES (118, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775202585);
INSERT INTO `admin_log` VALUES (119, 1, 'admin', '//localhost:8787/admin/ajax/clearCache', '清理缓存', '{\"type\":\"all\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775202829);
INSERT INTO `admin_log` VALUES (120, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775202842);
INSERT INTO `admin_log` VALUES (121, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775202880);
INSERT INTO `admin_log` VALUES (122, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"4cf385fe-a6c5-4fb7-a569-03bf20495865\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775202974);
INSERT INTO `admin_log` VALUES (123, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775202995);
INSERT INTO `admin_log` VALUES (124, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":3,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_tier_weight\",\"title\":\"默认中奖权重\",\"value\":\"[{\\\"T1\\\":\\\"1\\\"},{\\\"T2\\\":\\\"20\\\"},{\\\"T3\\\":\\\"74\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775097681}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203067);
INSERT INTO `admin_log` VALUES (125, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203156);
INSERT INTO `admin_log` VALUES (126, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203191);
INSERT INTO `admin_log` VALUES (127, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203203);
INSERT INTO `admin_log` VALUES (128, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203209);
INSERT INTO `admin_log` VALUES (129, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203239);
INSERT INTO `admin_log` VALUES (130, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203266);
INSERT INTO `admin_log` VALUES (131, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203277);
INSERT INTO `admin_log` VALUES (132, 1, 'admin', '//localhost:8787/admin/ajax/clearCache', '清理缓存', '{\"type\":\"all\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203328);
INSERT INTO `admin_log` VALUES (133, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203337);
INSERT INTO `admin_log` VALUES (134, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203478);
INSERT INTO `admin_log` VALUES (135, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203512);
INSERT INTO `admin_log` VALUES (136, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775203522);
INSERT INTO `admin_log` VALUES (137, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775205077);
INSERT INTO `admin_log` VALUES (138, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775205098);
INSERT INTO `admin_log` VALUES (139, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775205923);
INSERT INTO `admin_log` VALUES (140, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775205997);
INSERT INTO `admin_log` VALUES (141, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206178);
INSERT INTO `admin_log` VALUES (142, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206195);
INSERT INTO `admin_log` VALUES (143, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206197);
INSERT INTO `admin_log` VALUES (144, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206246);
INSERT INTO `admin_log` VALUES (145, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206257);
INSERT INTO `admin_log` VALUES (146, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206265);
INSERT INTO `admin_log` VALUES (147, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206279);
INSERT INTO `admin_log` VALUES (148, 1, 'admin', '//localhost:8787/admin/ajax/clearCache', '清理缓存', '{\"type\":\"all\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206312);
INSERT INTO `admin_log` VALUES (149, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206321);
INSERT INTO `admin_log` VALUES (150, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206378);
INSERT INTO `admin_log` VALUES (151, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206499);
INSERT INTO `admin_log` VALUES (152, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206501);
INSERT INTO `admin_log` VALUES (153, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206512);
INSERT INTO `admin_log` VALUES (154, 1, 'admin', '//localhost:8787/admin/Index/login', 'Login', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"eaf3602e-7bf0-49ca-835d-cede63028c21\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1775206551);
INSERT INTO `admin_log` VALUES (155, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206553);
INSERT INTO `admin_log` VALUES (156, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":10,\"channel_id\":\"1\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775206767);
INSERT INTO `admin_log` VALUES (157, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1775206885);
INSERT INTO `admin_log` VALUES (158, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1775206918);
INSERT INTO `admin_log` VALUES (159, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"12c4de64-32b2-45ff-ac55-e0e4be42aab9\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1775206982);
INSERT INTO `admin_log` VALUES (160, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":15,\"channel_id\":\"2\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1775206993);
INSERT INTO `admin_log` VALUES (161, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1775207276);
INSERT INTO `admin_log` VALUES (162, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775207853);
INSERT INTO `admin_log` VALUES (163, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":4,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_bigwin_weight\",\"title\":\"默认大奖权重\",\"value\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"1000\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775096611}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775207879);
INSERT INTO `admin_log` VALUES (164, 1, 'admin', '//localhost:8787/admin/game.Channel/del', '渠道管理-删除', '{\"ids\":[\"6\"],\"confirm_cascade\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775208008);
INSERT INTO `admin_log` VALUES (165, 1, 'admin', '//localhost:8787/admin/game.Channel/add', '渠道管理-添加', '{\"status\":\"1\",\"admin_id\":\"6\",\"code\":\"test_game_three\",\"name\":\"测试渠道3\",\"remark\":\"测试自动添加游戏配置\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775208039);
INSERT INTO `admin_log` VALUES (166, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":3,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_tier_weight\",\"title\":\"默认中奖权重\",\"value\":\"[{\\\"T1\\\":\\\"0\\\"},{\\\"T2\\\":\\\"20\\\"},{\\\"T3\\\":\\\"74\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775097681}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775208546);
INSERT INTO `admin_log` VALUES (167, 1, 'admin', '//localhost:8787/admin/game.Config/edit', '游戏配置-编辑', '{\"ID\":3,\"channel_id\":\"0\",\"group\":\"game_weight\",\"name\":\"default_tier_weight\",\"title\":\"默认中奖权重\",\"value\":\"[{\\\"T1\\\":\\\"1\\\"},{\\\"T2\\\":\\\"20\\\"},{\\\"T3\\\":\\\"74\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"sort\":100,\"instantiation\":1,\"create_time\":null,\"update_time\":1775208546}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775209668);
INSERT INTO `admin_log` VALUES (168, 1, 'admin', '//localhost:8787/admin/game.Channel/del', '渠道管理-删除', '{\"ids\":[\"7\"],\"confirm_cascade\":\"1\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775209699);
INSERT INTO `admin_log` VALUES (169, 1, 'admin', '//localhost:8787/admin/game.User/edit', '用户管理-编辑', '{\"id\":3,\"game_channel_id\":2,\"username\":\"+60111111111\",\"password\":\"***\",\"uuid\":\"485c1a5d045e036a1683bc7f16ef8291\",\"phone\":\"+60111111111\",\"remark\":\"测试渠道2用户+60111111111\",\"coin\":0,\"head_image\":null,\"admin_id\":3,\"status\":1,\"tier_weight\":\"[{\\\"T1\\\":\\\"5\\\"},{\\\"T2\\\":\\\"20\\\"},{\\\"T3\\\":\\\"70\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"bigwin_weight\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"ticket_count\":\"\",\"create_time\":1775032301,\"update_time\":1775032301,\"salt\":\"***\",\"token\":\"***\",\"refresh_token\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775209896);
INSERT INTO `admin_log` VALUES (170, 1, 'admin', '//localhost:8787/admin/crud.Crud/parseFieldData', 'CRUD代码生成-解析字段数据', '{\"type\":\"db\",\"table\":\"game_play_record\",\"sql\":\"\",\"connection\":\"mysql\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210119);
INSERT INTO `admin_log` VALUES (171, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_play_record\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210509);
INSERT INTO `admin_log` VALUES (172, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"db\",\"table\":{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"},\"fields\":[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\')\",\"comment\":\"中奖档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"0\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210511);
INSERT INTO `admin_log` VALUES (173, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_play_record\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210610);
INSERT INTO `admin_log` VALUES (174, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"db\",\"table\":{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"},\"fields\":[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\')\",\"comment\":\"中奖档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"T1\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210610);
INSERT INTO `admin_log` VALUES (175, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_play_record\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210656);
INSERT INTO `admin_log` VALUES (176, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"db\",\"table\":{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"},\"fields\":[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\')\",\"comment\":\"中奖档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5\",\"designType\":\"string\",\"table\":{\"render\":\"tag\",\"sortable\":\"false\",\"operator\":\"eq\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"T1\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210657);
INSERT INTO `admin_log` VALUES (177, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_play_record\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210691);
INSERT INTO `admin_log` VALUES (178, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"db\",\"table\":{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"},\"fields\":[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"varchar(10)\",\"comment\":\"中奖档位\",\"designType\":\"string\",\"table\":{\"render\":\"tag\",\"sortable\":\"false\",\"operator\":\"eq\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"T1\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210691);
INSERT INTO `admin_log` VALUES (179, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_play_record\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210701);
INSERT INTO `admin_log` VALUES (180, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"db\",\"table\":{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"},\"fields\":[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"varchar(10)\",\"comment\":\"中奖档位\",\"designType\":\"string\",\"table\":{\"render\":\"tag\",\"sortable\":\"false\",\"operator\":\"eq\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"T1\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210702);
INSERT INTO `admin_log` VALUES (181, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_play_record\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210769);
INSERT INTO `admin_log` VALUES (182, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"db\",\"table\":{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"},\"fields\":[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"varchar(10)\",\"comment\":\"中奖档位\",\"designType\":\"string\",\"table\":{\"render\":\"tag\",\"sortable\":\"false\",\"operator\":\"eq\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210769);
INSERT INTO `admin_log` VALUES (183, 1, 'admin', '//localhost:8787/admin/game.User/edit', '用户管理-编辑', '{\"id\":4,\"game_channel_id\":1,\"username\":\"+60111111111\",\"password\":\"***\",\"uuid\":\"68c845504ae2a6b470fa06a395d6f093\",\"phone\":\"+60111111111\",\"remark\":\"测试账户\",\"coin\":5000,\"head_image\":null,\"admin_id\":2,\"status\":1,\"tier_weight\":\"[{\\\"T1\\\":\\\"1\\\"},{\\\"T2\\\":\\\"20\\\"},{\\\"T3\\\":\\\"74\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"bigwin_weight\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"ticket_count\":\"\",\"create_time\":1775197894,\"update_time\":1775197894,\"salt\":\"***\",\"token\":\"***\",\"refresh_token\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210798);
INSERT INTO `admin_log` VALUES (184, 1, 'admin', '//localhost:8787/admin/game.User/edit', '用户管理-编辑', '{\"id\":3,\"game_channel_id\":2,\"username\":\"+60111111111\",\"password\":\"***\",\"uuid\":\"485c1a5d045e036a1683bc7f16ef8291\",\"phone\":\"+60111111111\",\"remark\":\"测试渠道2用户+60111111111\",\"coin\":0,\"head_image\":null,\"admin_id\":3,\"status\":1,\"tier_weight\":\"[{\\\"T1\\\":\\\"5\\\"},{\\\"T2\\\":\\\"20\\\"},{\\\"T3\\\":\\\"70\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"bigwin_weight\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"ticket_count\":\"\",\"create_time\":1775032301,\"update_time\":1775209896,\"salt\":\"***\",\"token\":\"***\",\"refresh_token\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775210806);
INSERT INTO `admin_log` VALUES (185, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"4d6d5686-6440-43a0-9c0f-83360a911b97\",\"captchaInfo\":\"142,161-261,134;350;200\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775726846);
INSERT INTO `admin_log` VALUES (186, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"3b85b064-d198-46f9-9ade-b76f0c448b73\",\"captchaInfo\":\"80,48-144,81;350;200\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775807745);
INSERT INTO `admin_log` VALUES (187, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"f3e041f5-8f15-4fbd-9ccf-bdcd2640f260\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775807769);
INSERT INTO `admin_log` VALUES (188, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"18f6396f-12f8-498a-b8cb-e14e37c78d8b\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775807831);
INSERT INTO `admin_log` VALUES (189, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"9fcf1bd2-c2da-43f7-90bd-4f64a7e2a14d\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775807933);
INSERT INTO `admin_log` VALUES (190, 4, 'zhuguan1', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"zhuguan1\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"239a3b0f-3bf7-413c-a57a-7db536c74175\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775807950);
INSERT INTO `admin_log` VALUES (191, 2, 'admin1', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin1\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"df41bd9f-8915-4744-a798-7277cacca860\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775807960);
INSERT INTO `admin_log` VALUES (192, 1, 'admin', '//localhost:8787/admin/game.User/edit', '用户管理-编辑', '{\"id\":4,\"game_channel_id\":1,\"username\":\"+60111111111\",\"password\":\"***\",\"uuid\":\"68c845504ae2a6b470fa06a395d6f093\",\"phone\":\"+60111111111\",\"remark\":\"测试账户\",\"coin\":5000,\"head_image\":null,\"admin_id\":2,\"status\":1,\"tier_weight\":\"[{\\\"T1\\\":\\\"1\\\"},{\\\"T2\\\":\\\"20\\\"},{\\\"T3\\\":\\\"74\\\"},{\\\"T4\\\":\\\"1\\\"},{\\\"T5\\\":\\\"4\\\"}]\",\"bigwin_weight\":\"[{\\\"5\\\":\\\"10000\\\"},{\\\"10\\\":\\\"20\\\"},{\\\"15\\\":\\\"20\\\"},{\\\"20\\\":\\\"20\\\"},{\\\"25\\\":\\\"20\\\"},{\\\"30\\\":\\\"10000\\\"}]\",\"ticket_count\":\"[{\\\"ante\\\":1,\\\"count\\\":1}]\",\"create_time\":1775197894,\"update_time\":1775210798,\"salt\":\"***\",\"token\":\"***\",\"refresh_token\":\"***\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775808028);
INSERT INTO `admin_log` VALUES (193, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"02c68c89-6e96-4024-9547-0e7b7ccd7466\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775808628);
INSERT INTO `admin_log` VALUES (194, 1, 'admin', '//localhost:8787/admin/crud.Crud/parseFieldData', 'CRUD代码生成-解析字段数据', '{\"type\":\"db\",\"table\":\"game_reward\",\"sql\":\"\",\"connection\":\"mysql\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775808948);
INSERT INTO `admin_log` VALUES (195, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809102);
INSERT INTO `admin_log` VALUES (196, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"db\",\"table\":{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":0,\"modelFile\":\"app\\/admin\\/model\\/game\\/Reward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/admin\\/validate\\/game\\/Reward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":6,\"newName\":\"id\",\"oldName\":\"\",\"after\":\"FIRST FIELD\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":1,\"oldName\":\"channle_id\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"tier\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"No\"},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"7939d59c-5b88-4adc-bb72-5c5973b3307b\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"527ff131-083b-4626-90b0-be883727d481\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"e9119597-9b1a-4bbb-8d68-2a9beabc8b08\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"d245aa99-476b-4e24-a317-ae2728f9a768\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"ea5821ac-adcb-4420-800d-3b8b2c3b3ccf\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"9255dea5-73d5-467d-89ce-891431fc5022\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"417364ed-51cc-4301-adf9-610e2d9fdaa6\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809102);
INSERT INTO `admin_log` VALUES (197, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809190);
INSERT INTO `admin_log` VALUES (198, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"db\",\"table\":{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":0,\"modelFile\":\"app\\/admin\\/model\\/game\\/Reward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/admin\\/validate\\/game\\/Reward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":6,\"newName\":\"id\",\"oldName\":\"\",\"after\":\"FIRST FIELD\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":1,\"oldName\":\"channle_id\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"tier\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"No\"},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"7939d59c-5b88-4adc-bb72-5c5973b3307b\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"527ff131-083b-4626-90b0-be883727d481\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"e9119597-9b1a-4bbb-8d68-2a9beabc8b08\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"d245aa99-476b-4e24-a317-ae2728f9a768\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"ea5821ac-adcb-4420-800d-3b8b2c3b3ccf\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"9255dea5-73d5-467d-89ce-891431fc5022\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"417364ed-51cc-4301-adf9-610e2d9fdaa6\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809190);
INSERT INTO `admin_log` VALUES (199, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809213);
INSERT INTO `admin_log` VALUES (200, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"db\",\"table\":{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":6,\"newName\":\"id\",\"oldName\":\"\",\"after\":\"FIRST FIELD\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":1,\"oldName\":\"channle_id\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"tier\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"No\"},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"7939d59c-5b88-4adc-bb72-5c5973b3307b\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"527ff131-083b-4626-90b0-be883727d481\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"e9119597-9b1a-4bbb-8d68-2a9beabc8b08\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"d245aa99-476b-4e24-a317-ae2728f9a768\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"ea5821ac-adcb-4420-800d-3b8b2c3b3ccf\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"9255dea5-73d5-467d-89ce-891431fc5022\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"417364ed-51cc-4301-adf9-610e2d9fdaa6\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809213);
INSERT INTO `admin_log` VALUES (201, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809228);
INSERT INTO `admin_log` VALUES (202, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"db\",\"table\":{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":6,\"newName\":\"id\",\"oldName\":\"\",\"after\":\"FIRST FIELD\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":1,\"oldName\":\"channle_id\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"tier\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"No\"},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"7939d59c-5b88-4adc-bb72-5c5973b3307b\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"527ff131-083b-4626-90b0-be883727d481\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"e9119597-9b1a-4bbb-8d68-2a9beabc8b08\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"d245aa99-476b-4e24-a317-ae2728f9a768\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"ea5821ac-adcb-4420-800d-3b8b2c3b3ccf\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"9255dea5-73d5-467d-89ce-891431fc5022\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"417364ed-51cc-4301-adf9-610e2d9fdaa6\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809228);
INSERT INTO `admin_log` VALUES (203, 1, 'admin', '//localhost:8787/admin/crud.Crud/parseFieldData', 'CRUD代码生成-解析字段数据', '{\"type\":\"db\",\"table\":\"game_reward\",\"sql\":\"\",\"connection\":\"mysql\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809235);
INSERT INTO `admin_log` VALUES (204, 1, 'admin', '//localhost:8787/admin/crud.Crud/logStart', 'CRUD代码生成-从历史记录开始', '{\"id\":15,\"type\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809257);
INSERT INTO `admin_log` VALUES (205, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809270);
INSERT INTO `admin_log` VALUES (206, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"log\",\"table\":{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[],\"rebuild\":\"No\",\"empty\":false},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"bbac165d-b723-4950-a648-0958bd28bab4\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"5b93a304-7989-4de6-b9fd-e8ebf3d53d5f\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"4ce4d369-8126-44cb-a8e2-7cb9c9f3a17b\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"f3f08292-7a93-4d55-9626-751cac816a1b\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d7379723-d766-4cd9-a2de-dc4130e3f657\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"337847b0-2bbc-4039-9d1a-ec434536e03f\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"680abeec-3584-4573-914e-b82dc6d2c202\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809270);
INSERT INTO `admin_log` VALUES (207, 1, 'admin', '//localhost:8787/admin/crud.Crud/logStart', 'CRUD代码生成-从历史记录开始', '{\"id\":16,\"type\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809293);
INSERT INTO `admin_log` VALUES (208, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809311);
INSERT INTO `admin_log` VALUES (209, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809328);
INSERT INTO `admin_log` VALUES (210, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"log\",\"table\":{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[],\"rebuild\":\"No\",\"empty\":false},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"e1cd08f3-18ca-4d9f-9217-66387d5e312e\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"f4f36a08-d581-4f80-b0c1-295b26c6c194\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1169e19e-324c-4303-aea7-dc3072e3f729\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"e5c0190d-9a0f-486c-a0c6-d60e36ac279a\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"ff15bcfb-ae73-4674-8a31-be184a74e3d8\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"1d6441f6-e37c-4f95-b4e9-aeb66fff38cf\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"81bf80d3-14e5-4d5d-be36-f8b524b2b01a\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809329);
INSERT INTO `admin_log` VALUES (211, 1, 'admin', '//localhost:8787/admin/crud.Crud/logStart', 'CRUD代码生成-从历史记录开始', '{\"id\":17,\"type\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809340);
INSERT INTO `admin_log` VALUES (212, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809349);
INSERT INTO `admin_log` VALUES (213, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"log\",\"table\":{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\",\"id\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/game\\/Reward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/game\\/Reward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":6,\"newName\":\"id\",\"oldName\":\"\",\"after\":\"remark\",\"sync\":true}],\"rebuild\":\"No\",\"empty\":false},\"fields\":[{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7133c772-5cbf-4410-8468-9067da7fd853\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7c8499bc-fcfc-4484-b57e-3258ba717e44\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"887dc27a-5243-4b6d-8ab3-84d803bac181\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"457f4868-fb79-40c7-b296-b91aa17ab9d1\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"db2f272f-aceb-4c78-b1fc-b67b467e64af\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"f8512bea-8ac4-4c8e-81e0-ef4c3d560f30\"},{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"b51b494f-4153-4ed0-b454-d16cb14c67e6\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809350);
INSERT INTO `admin_log` VALUES (214, 1, 'admin', '//localhost:8787/admin/crud.Crud/logStart', 'CRUD代码生成-从历史记录开始', '{\"id\":18,\"type\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809365);
INSERT INTO `admin_log` VALUES (215, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809369);
INSERT INTO `admin_log` VALUES (216, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"log\",\"table\":{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\",\"id\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/game\\/Reward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/game\\/Reward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-order\",\"index\":0,\"newName\":\"\",\"oldName\":\"id\",\"after\":\"FIRST FIELD\",\"sync\":true}],\"rebuild\":\"Yes\",\"empty\":true},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"35334bc5-a1e7-4561-a9cf-8b9078dcbc3a\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"343d7e60-b4b9-413e-a3dc-0708277cf22c\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"61c6a454-10dd-4838-8985-ab1ded4ecd26\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"0dce5ca5-ff1a-4984-9ac3-d170a5f5c067\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"fdaa89e0-3558-4300-8516-0a3a5b85f99f\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"934f30d0-554c-448f-90f3-b86d63b4e48e\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"a696aed8-5f79-44d6-a8f2-efbf26f0d7c0\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809370);
INSERT INTO `admin_log` VALUES (217, 1, 'admin', '//localhost:8787/admin/crud.Crud/logStart', 'CRUD代码生成-从历史记录开始', '{\"id\":17,\"type\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809418);
INSERT INTO `admin_log` VALUES (218, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809430);
INSERT INTO `admin_log` VALUES (219, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"log\",\"table\":{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[],\"rebuild\":\"Yes\",\"empty\":true},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"e78b0826-00d0-4ddd-a28d-010c2592e4ee\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"eb36bbe1-7d9d-4cc1-8c35-a3b6de64cce0\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"2549ec00-4ab9-47ce-a5ac-4f94bf1af775\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"fc0d4ae6-c8ac-4e17-b546-66870f21fd1e\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"965c8540-3906-4bc9-9a25-9a9ffbf726e0\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"f75a9fad-f7bb-4c87-868a-24df90748bb0\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"e2b0f56e-a874-4e55-a2c1-5b6f1eb9e65d\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809431);
INSERT INTO `admin_log` VALUES (220, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809445);
INSERT INTO `admin_log` VALUES (221, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"log\",\"table\":{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[],\"rebuild\":\"Yes\",\"empty\":true},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"e78b0826-00d0-4ddd-a28d-010c2592e4ee\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"eb36bbe1-7d9d-4cc1-8c35-a3b6de64cce0\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"2549ec00-4ab9-47ce-a5ac-4f94bf1af775\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"fc0d4ae6-c8ac-4e17-b546-66870f21fd1e\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"965c8540-3906-4bc9-9a25-9a9ffbf726e0\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"f75a9fad-f7bb-4c87-868a-24df90748bb0\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"e2b0f56e-a874-4e55-a2c1-5b6f1eb9e65d\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809446);
INSERT INTO `admin_log` VALUES (222, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward\",\"connection\":\"mysql\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809549);
INSERT INTO `admin_log` VALUES (223, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"log\",\"table\":{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"tier\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\",\"empty\":true},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"e78b0826-00d0-4ddd-a28d-010c2592e4ee\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"eb36bbe1-7d9d-4cc1-8c35-a3b6de64cce0\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"2549ec00-4ab9-47ce-a5ac-4f94bf1af775\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"fc0d4ae6-c8ac-4e17-b546-66870f21fd1e\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"965c8540-3906-4bc9-9a25-9a9ffbf726e0\"},{\"title\":\"字符串\",\"name\":\"tier\",\"comment\":\"奖励档位T1,T2,T3,T4,T5,BIGWIN\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"be855fc1-78d6-471e-a3d3-1f978af95579\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"e2b0f56e-a874-4e55-a2c1-5b6f1eb9e65d\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809550);
INSERT INTO `admin_log` VALUES (224, 1, 'admin', '//localhost:8787/admin/crud.Crud/generateCheck', 'CRUD代码生成-生成前预检', '{\"table\":\"game_reward_config\",\"connection\":null,\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/rewardConfig\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/RewardConfig.php\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809841);
INSERT INTO `admin_log` VALUES (225, 1, 'admin', '//localhost:8787/admin/crud.Crud/generate', 'CRUD代码生成-生成', '{\"type\":\"create\",\"table\":{\"name\":\"game_reward_config\",\"comment\":\"游戏奖励配置\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"game_channel_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"tier\",\"remark\"],\"columnFields\":[\"id\",\"grid_number\",\"ui_text\",\"real_ev\",\"tier\",\"remark\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward_config\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameRewardConfig.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/RewardConfig.php\",\"validateFile\":\"app\\/common\\/validate\\/GameRewardConfig.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/rewardConfig\",\"databaseConnection\":null,\"designChange\":[],\"rebuild\":\"No\"},\"fields\":[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"05997016-dadc-49f1-a010-cd501cbba713\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"game_channel_id\",\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"622845bf-8d4c-46a5-a151-8d9cb972cd4a\"},{\"title\":\"字符串\",\"name\":\"grid_number\",\"comment\":\"点数\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"94fcf44b-ceaa-417f-8d8e-21fbe4f4a1db\"},{\"title\":\"字符串\",\"name\":\"ui_text\",\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"a289a888-b4ae-40dd-9d10-3154634eacc7\"},{\"title\":\"数字\",\"name\":\"real_ev\",\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"d383ad99-47d8-4c17-8452-654bbec2306b\"},{\"title\":\"字符串\",\"name\":\"tier\",\"comment\":\"档位\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"ea15ad42-463e-4f8b-8259-a33daaf8479b\"},{\"title\":\"备注\",\"name\":\"remark\",\"comment\":\"备注\",\"designType\":\"textarea\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"d34d3bed-5a43-4e22-866a-3b8a572276e9\"}]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809843);
INSERT INTO `admin_log` VALUES (226, 1, 'admin', '//localhost:8787/admin/auth.Rule/del', '菜单规则管理-删除', '{\"ids\":[\"109\",\"114\",\"113\",\"112\",\"111\",\"110\"]}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809868);
INSERT INTO `admin_log` VALUES (227, 1, 'admin', '//localhost:8787/admin/crud.Crud/logStart', 'CRUD代码生成-从历史记录开始', '{\"id\":23,\"type\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775809960);
INSERT INTO `admin_log` VALUES (228, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"598253ac-ee82-44f1-9094-1bfa2e386721\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775810732);
INSERT INTO `admin_log` VALUES (229, 1, 'admin', '//localhost:8787/admin/game.RewardConfig/add', '游戏奖励配置-添加', '{\"game_channel_id\":\"1\",\"tier_reward_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"6\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"7\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"8\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"9\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"11\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"12\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"13\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"14\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"16\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"17\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"18\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"19\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"21\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"22\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"23\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"24\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"26\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"27\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T2\\\"},{\\\"grid_number\\\":\\\"28\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T3\\\"},{\\\"grid_number\\\":\\\"29\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T4\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T5\\\"}]\",\"bigwin_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"}]\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775815014);
INSERT INTO `admin_log` VALUES (230, 1, 'admin', '//localhost:8787/admin/game.RewardConfig/add', '游戏奖励配置-添加', '{\"game_channel_id\":\"1\",\"tier_reward_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"6\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"7\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"8\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"9\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"11\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"12\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"13\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"14\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"16\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"17\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"18\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"19\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"21\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"22\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"23\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"24\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"26\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"27\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T2\\\"},{\\\"grid_number\\\":\\\"28\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T3\\\"},{\\\"grid_number\\\":\\\"29\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T4\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T5\\\"}]\",\"bigwin_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"}]\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775815074);
INSERT INTO `admin_log` VALUES (231, 1, 'admin', '//localhost:8787/admin/game.RewardConfig/add', '游戏奖励配置-添加', '{\"game_channel_id\":\"1\",\"tier_reward_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"6\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"7\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"8\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"9\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"11\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"12\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"13\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"14\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"16\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"17\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"18\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"19\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"21\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"22\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"23\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"24\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"26\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"27\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T2\\\"},{\\\"grid_number\\\":\\\"28\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T3\\\"},{\\\"grid_number\\\":\\\"29\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T4\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T5\\\"}]\",\"bigwin_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"}]\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775815085);
INSERT INTO `admin_log` VALUES (232, 1, 'admin', '//localhost:8787/admin/game.RewardConfig/add', '游戏奖励配置-添加', '{\"game_channel_id\":\"1\",\"tier_reward_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"6\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"7\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"8\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"9\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"11\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"12\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"13\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"14\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"16\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"17\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"18\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"19\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"21\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"22\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"23\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"24\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"26\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"27\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T2\\\"},{\\\"grid_number\\\":\\\"28\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T3\\\"},{\\\"grid_number\\\":\\\"29\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T4\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T5\\\"}]\",\"bigwin_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"}]\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775815143);
INSERT INTO `admin_log` VALUES (233, 1, 'admin', '//localhost:8787/admin/game.RewardConfig/add', '游戏奖励配置-添加', '{\"game_channel_id\":\"1\",\"tier_reward_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"6\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"7\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"8\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"9\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"11\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"12\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"13\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"14\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"16\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"17\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"18\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"19\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"21\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"22\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"23\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"24\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"26\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"27\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T2\\\"},{\\\"grid_number\\\":\\\"28\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T3\\\"},{\\\"grid_number\\\":\\\"29\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T4\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T5\\\"}]\",\"bigwin_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"}]\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775815146);
INSERT INTO `admin_log` VALUES (234, 1, 'admin', '//localhost:8787/admin/game.RewardConfig/add', '游戏奖励配置-添加', '{\"game_channel_id\":\"1\",\"tier_reward_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"6\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"7\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"8\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"9\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"11\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"12\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"13\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"14\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"16\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"17\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"18\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"19\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"21\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"22\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"23\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"24\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"26\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"27\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T2\\\"},{\\\"grid_number\\\":\\\"28\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T3\\\"},{\\\"grid_number\\\":\\\"29\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T4\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T5\\\"}]\",\"bigwin_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"BIGWIN\\\"}]\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775815266);
INSERT INTO `admin_log` VALUES (235, 1, 'admin', '//localhost:8787/admin/game.RewardConfig/edit', '游戏奖励配置-编辑', '{\"id\":\"1\",\"game_channel_id\":\"1\",\"tier_reward_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"6\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"7\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"8\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"9\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"11\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"12\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"13\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"14\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"16\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"17\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"18\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"19\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"21\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"22\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"23\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"24\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"26\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T1\\\"},{\\\"grid_number\\\":\\\"27\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T2\\\"},{\\\"grid_number\\\":\\\"28\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T3\\\"},{\\\"grid_number\\\":\\\"29\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T4\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"10\\\",\\\"real_ev\\\":\\\"10\\\",\\\"tier\\\":\\\"T5\\\"}]\",\"bigwin_form\":\"[{\\\"grid_number\\\":\\\"5\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"10\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"15\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"20\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"25\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"},{\\\"grid_number\\\":\\\"30\\\",\\\"ui_text\\\":\\\"100\\\",\\\"real_ev\\\":\\\"100\\\",\\\"tier\\\":\\\"BIGWIN\\\"}]\",\"create_time\":1775815266,\"update_time\":1775815266}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775815296);
INSERT INTO `admin_log` VALUES (236, 1, 'admin', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"01f6c821-abd5-4e71-ac62-ae455430e19b\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1775815310);
INSERT INTO `admin_log` VALUES (237, 3, 'admin2', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin2\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"b162df33-89f1-4ecb-85e2-424281582b59\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 1775815322);
INSERT INTO `admin_log` VALUES (238, 1, 'admin', '//localhost:8787/admin/auth.Group/edit', '角色组管理-编辑', '{\"id\":6,\"pid\":0,\"name\":\"游戏测试2组\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,115,120,119,118,117,116,103,108,107,106,105,104,97,102,101,100,99,98,91,96,95,94,93,92],\"status\":1,\"update_time\":1775098619,\"create_time\":1775026316}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775815346);
INSERT INTO `admin_log` VALUES (239, 1, 'admin', '//localhost:8787/admin/auth.Group/edit', '角色组管理-编辑', '{\"id\":5,\"pid\":0,\"name\":\"游戏测试1组\",\"rules\":[1,89,2,3,7,6,5,4,8,12,11,10,9,13,18,17,16,15,14,19,20,90,115,120,119,118,117,116,103,108,107,106,105,104,97,102,101,100,99,98,91,96,95,94,93,92],\"status\":1,\"update_time\":1775098598,\"create_time\":1775026281}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775815352);
INSERT INTO `admin_log` VALUES (240, 2, 'admin1', '//localhost:8787/admin/Index/login', '登录', '{\"username\":\"admin1\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"a13e2e5d-5106-40a9-b98b-8bd6a1384d6b\",\"captchaInfo\":\"\"}', '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', 1775815362);
-- ----------------------------
-- Table structure for admin_rule
-- ----------------------------
DROP TABLE IF EXISTS `admin_rule`;
CREATE TABLE `admin_rule` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`pid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '上级菜单',
`type` enum('menu_dir','menu','button') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'menu' COMMENT '类型:menu_dir=菜单目录,menu=菜单项,button=页面按钮',
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '标题',
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '规则名称',
`path` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '路由路径',
`icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '图标',
`menu_type` enum('tab','link','iframe') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '菜单类型:tab=选项卡,link=链接,iframe=Iframe',
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Url',
`component` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '组件路径',
`keepalive` tinyint(4) UNSIGNED NOT NULL DEFAULT 0 COMMENT '缓存:0=关闭,1=开启',
`extend` enum('none','add_rules_only','add_menu_only') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'none' COMMENT '扩展属性:none=无,add_rules_only=只添加为路由,add_menu_only=只添加为菜单',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '备注',
`weigh` int(11) NOT NULL DEFAULT 0 COMMENT '权重',
`status` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 COMMENT '状态:0=禁用,1=启用',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `pid`(`pid` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 121 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '菜单和权限规则表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of admin_rule
-- ----------------------------
INSERT INTO `admin_rule` VALUES (1, 0, 'menu', '控制台', 'dashboard', 'dashboard', 'fa fa-dashboard', 'tab', '', '/src/views/backend/dashboard.vue', 1, 'none', 'Remark lang', 999, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (2, 0, 'menu_dir', '权限管理', 'auth', 'auth', 'fa fa-group', NULL, '', '', 0, 'none', '', 100, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (3, 2, 'menu', '角色组管理', 'auth/group', 'auth/group', 'fa fa-group', 'tab', '', '/src/views/backend/auth/group/index.vue', 1, 'none', 'Remark lang', 99, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (4, 3, 'button', '查看', 'auth/group/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (5, 3, 'button', '添加', 'auth/group/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (6, 3, 'button', '编辑', 'auth/group/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (7, 3, 'button', '删除', 'auth/group/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (8, 2, 'menu', '管理员管理', 'auth/admin', 'auth/admin', 'el-icon-UserFilled', 'tab', '', '/src/views/backend/auth/admin/index.vue', 1, 'none', '', 98, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (9, 8, 'button', '查看', 'auth/admin/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (10, 8, 'button', '添加', 'auth/admin/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (11, 8, 'button', '编辑', 'auth/admin/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (12, 8, 'button', '删除', 'auth/admin/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (13, 2, 'menu', '菜单规则管理', 'auth/rule', 'auth/rule', 'el-icon-Grid', 'tab', '', '/src/views/backend/auth/rule/index.vue', 1, 'none', '', 97, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (14, 13, 'button', '查看', 'auth/rule/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (15, 13, 'button', '添加', 'auth/rule/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (16, 13, 'button', '编辑', 'auth/rule/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (17, 13, 'button', '删除', 'auth/rule/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (18, 13, 'button', '快速排序', 'auth/rule/sortable', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (19, 2, 'menu', '管理员日志管理', 'auth/adminLog', 'auth/adminLog', 'el-icon-List', 'tab', '', '/src/views/backend/auth/adminLog/index.vue', 1, 'none', '', 96, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (20, 19, 'button', '查看', 'auth/adminLog/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (21, 0, 'menu_dir', '会员管理', 'user', 'user', 'fa fa-drivers-license', NULL, '', '', 0, 'none', '', 95, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (22, 21, 'menu', '会员管理', 'user/user', 'user/user', 'fa fa-user', 'tab', '', '/src/views/backend/user/user/index.vue', 1, 'none', '', 94, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (23, 22, 'button', '查看', 'user/user/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (24, 22, 'button', '添加', 'user/user/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (25, 22, 'button', '编辑', 'user/user/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (26, 22, 'button', '删除', 'user/user/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (27, 21, 'menu', '会员分组管理', 'user/group', 'user/group', 'fa fa-group', 'tab', '', '/src/views/backend/user/group/index.vue', 1, 'none', '', 93, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (28, 27, 'button', '查看', 'user/group/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (29, 27, 'button', '添加', 'user/group/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (30, 27, 'button', '编辑', 'user/group/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (31, 27, 'button', '删除', 'user/group/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (32, 21, 'menu', '会员规则管理', 'user/rule', 'user/rule', 'fa fa-th-list', 'tab', '', '/src/views/backend/user/rule/index.vue', 1, 'none', '', 92, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (33, 32, 'button', '查看', 'user/rule/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (34, 32, 'button', '添加', 'user/rule/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (35, 32, 'button', '编辑', 'user/rule/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (36, 32, 'button', '删除', 'user/rule/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (37, 32, 'button', '快速排序', 'user/rule/sortable', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (38, 21, 'menu', '会员余额管理', 'user/moneyLog', 'user/moneyLog', 'el-icon-Money', 'tab', '', '/src/views/backend/user/moneyLog/index.vue', 1, 'none', '', 91, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (39, 38, 'button', '查看', 'user/moneyLog/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (40, 38, 'button', '添加', 'user/moneyLog/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (41, 21, 'menu', '会员积分管理', 'user/scoreLog', 'user/scoreLog', 'el-icon-Discount', 'tab', '', '/src/views/backend/user/scoreLog/index.vue', 1, 'none', '', 90, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (42, 41, 'button', '查看', 'user/scoreLog/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (43, 41, 'button', '添加', 'user/scoreLog/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (44, 0, 'menu_dir', '常规管理', 'routine', 'routine', 'fa fa-cogs', NULL, '', '', 0, 'none', '', 89, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (45, 44, 'menu', '系统配置', 'routine/config', 'routine/config', 'el-icon-Tools', 'tab', '', '/src/views/backend/routine/config/index.vue', 1, 'none', '', 88, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (46, 45, 'button', '查看', 'routine/config/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (47, 45, 'button', '编辑', 'routine/config/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (48, 44, 'menu', '附件管理', 'routine/attachment', 'routine/attachment', 'fa fa-folder', 'tab', '', '/src/views/backend/routine/attachment/index.vue', 1, 'none', 'Remark lang', 87, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (49, 48, 'button', '查看', 'routine/attachment/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (50, 48, 'button', '编辑', 'routine/attachment/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (51, 48, 'button', '删除', 'routine/attachment/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (52, 44, 'menu', '个人资料', 'routine/adminInfo', 'routine/adminInfo', 'fa fa-user', 'tab', '', '/src/views/backend/routine/adminInfo.vue', 1, 'none', '', 86, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (53, 52, 'button', '查看', 'routine/adminInfo/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (54, 52, 'button', '编辑', 'routine/adminInfo/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (55, 0, 'menu_dir', '数据安全管理', 'security', 'security', 'fa fa-shield', NULL, '', '', 0, 'none', '', 85, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (56, 55, 'menu', '数据回收站', 'security/dataRecycleLog', 'security/dataRecycleLog', 'fa fa-database', 'tab', '', '/src/views/backend/security/dataRecycleLog/index.vue', 1, 'none', '', 84, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (57, 56, 'button', '查看', 'security/dataRecycleLog/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (58, 56, 'button', '删除', 'security/dataRecycleLog/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (59, 56, 'button', '还原', 'security/dataRecycleLog/restore', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (60, 56, 'button', '查看详情', 'security/dataRecycleLog/info', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (61, 55, 'menu', '敏感数据修改记录', 'security/sensitiveDataLog', 'security/sensitiveDataLog', 'fa fa-expeditedssl', 'tab', '', '/src/views/backend/security/sensitiveDataLog/index.vue', 1, 'none', '', 83, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (62, 61, 'button', '查看', 'security/sensitiveDataLog/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (63, 61, 'button', '删除', 'security/sensitiveDataLog/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (64, 61, 'button', '回滚', 'security/sensitiveDataLog/rollback', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (65, 61, 'button', '查看详情', 'security/sensitiveDataLog/info', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (66, 55, 'menu', '数据回收规则管理', 'security/dataRecycle', 'security/dataRecycle', 'fa fa-database', 'tab', '', '/src/views/backend/security/dataRecycle/index.vue', 1, 'none', 'Remark lang', 82, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (67, 66, 'button', '查看', 'security/dataRecycle/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (68, 66, 'button', '添加', 'security/dataRecycle/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (69, 66, 'button', '编辑', 'security/dataRecycle/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (70, 66, 'button', '删除', 'security/dataRecycle/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (71, 55, 'menu', '敏感字段规则管理', 'security/sensitiveData', 'security/sensitiveData', 'fa fa-expeditedssl', 'tab', '', '/src/views/backend/security/sensitiveData/index.vue', 1, 'none', 'Remark lang', 81, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (72, 71, 'button', '查看', 'security/sensitiveData/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (73, 71, 'button', '添加', 'security/sensitiveData/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (74, 71, 'button', '编辑', 'security/sensitiveData/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (75, 71, 'button', '删除', 'security/sensitiveData/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (76, 0, 'menu', 'BuildAdmin', 'buildadmin', 'buildadmin', 'local-logo', 'link', 'https://doc.buildadmin.com', '', 0, 'none', '', 0, 0, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (77, 45, 'button', '添加', 'routine/config/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (78, 0, 'menu', '模块市场', 'moduleStore/moduleStore', 'moduleStore', 'el-icon-GoodsFilled', 'tab', '', '/src/views/backend/module/index.vue', 1, 'none', '', 86, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (79, 78, 'button', '查看', 'moduleStore/moduleStore/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (80, 78, 'button', '安装', 'moduleStore/moduleStore/install', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (81, 78, 'button', '调整状态', 'moduleStore/moduleStore/changeState', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (82, 78, 'button', '卸载', 'moduleStore/moduleStore/uninstall', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (83, 78, 'button', '更新', 'moduleStore/moduleStore/update', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (84, 0, 'menu', 'CRUD代码生成', 'crud/crud', 'crud/crud', 'fa fa-code', 'tab', '', '/src/views/backend/crud/index.vue', 1, 'none', '', 80, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (85, 84, 'button', '查看', 'crud/crud/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (86, 84, 'button', '生成', 'crud/crud/generate', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (87, 84, 'button', '删除', 'crud/crud/delete', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (88, 45, 'button', '删除', 'routine/config/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022962, 1775022962);
INSERT INTO `admin_rule` VALUES (89, 1, 'button', '查看', 'dashboard/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775022964, 1775022964);
INSERT INTO `admin_rule` VALUES (90, 0, 'menu_dir', '游戏管理', 'game', 'game', 'fa fa-circle-o', NULL, '', '', 0, 'none', '', 0, 1, 1775030351, 1775024539);
INSERT INTO `admin_rule` VALUES (91, 90, 'menu', '渠道管理', 'game/channel', 'game/channel', '', 'tab', '', '/src/views/backend/game/channel/index.vue', 1, 'none', '', 0, 1, 1775024539, 1775024539);
INSERT INTO `admin_rule` VALUES (92, 91, 'button', '查看', 'game/channel/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775024539, 1775024539);
INSERT INTO `admin_rule` VALUES (93, 91, 'button', '添加', 'game/channel/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775024539, 1775024539);
INSERT INTO `admin_rule` VALUES (94, 91, 'button', '编辑', 'game/channel/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775024539, 1775024539);
INSERT INTO `admin_rule` VALUES (95, 91, 'button', '删除', 'game/channel/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775024539, 1775024539);
INSERT INTO `admin_rule` VALUES (96, 91, 'button', '快速排序', 'game/channel/sortable', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775024539, 1775024539);
INSERT INTO `admin_rule` VALUES (97, 90, 'menu', '用户管理', 'game/user', 'game/user', '', 'tab', '', '/src/views/backend/game/user/index.vue', 1, 'none', '', 0, 1, 1775028742, 1775028742);
INSERT INTO `admin_rule` VALUES (98, 97, 'button', '查看', 'game/user/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775028742, 1775028742);
INSERT INTO `admin_rule` VALUES (99, 97, 'button', '添加', 'game/user/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775028742, 1775028742);
INSERT INTO `admin_rule` VALUES (100, 97, 'button', '编辑', 'game/user/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775028742, 1775028742);
INSERT INTO `admin_rule` VALUES (101, 97, 'button', '删除', 'game/user/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775028742, 1775028742);
INSERT INTO `admin_rule` VALUES (102, 97, 'button', '快速排序', 'game/user/sortable', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775028742, 1775028742);
INSERT INTO `admin_rule` VALUES (103, 90, 'menu', '游戏配置', 'game/config', 'game/config', '', 'tab', '', '/src/views/backend/game/config/index.vue', 1, 'none', '', 0, 1, 1775096581, 1775096581);
INSERT INTO `admin_rule` VALUES (104, 103, 'button', '查看', 'game/config/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775096581, 1775096581);
INSERT INTO `admin_rule` VALUES (105, 103, 'button', '添加', 'game/config/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775096581, 1775096581);
INSERT INTO `admin_rule` VALUES (106, 103, 'button', '编辑', 'game/config/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775096581, 1775096581);
INSERT INTO `admin_rule` VALUES (107, 103, 'button', '删除', 'game/config/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775096581, 1775096581);
INSERT INTO `admin_rule` VALUES (108, 103, 'button', '快速排序', 'game/config/sortable', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775096581, 1775096581);
INSERT INTO `admin_rule` VALUES (115, 90, 'menu', '游戏奖励配置', 'game/rewardConfig', 'game/rewardConfig', '', 'tab', '', '/src/views/backend/game/rewardConfig/index.vue', 1, 'none', '', 0, 1, 1775809842, 1775809842);
INSERT INTO `admin_rule` VALUES (116, 115, 'button', '查看', 'game/rewardConfig/index', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775809842, 1775809842);
INSERT INTO `admin_rule` VALUES (117, 115, 'button', '添加', 'game/rewardConfig/add', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775809842, 1775809842);
INSERT INTO `admin_rule` VALUES (118, 115, 'button', '编辑', 'game/rewardConfig/edit', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775809842, 1775809842);
INSERT INTO `admin_rule` VALUES (119, 115, 'button', '删除', 'game/rewardConfig/del', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775809842, 1775809842);
INSERT INTO `admin_rule` VALUES (120, 115, 'button', '快速排序', 'game/rewardConfig/sortable', '', '', NULL, '', '', 0, 'none', '', 0, 1, 1775809842, 1775809842);
-- ----------------------------
-- Table structure for area
-- ----------------------------
DROP TABLE IF EXISTS `area`;
CREATE TABLE `area` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`pid` int(11) UNSIGNED NULL DEFAULT NULL COMMENT '父id',
`shortname` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '简称',
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '名称',
`mergename` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '全称',
`level` tinyint(4) UNSIGNED NULL DEFAULT NULL COMMENT '层级:1=省,2=市,3=区/县',
`pinyin` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '拼音',
`code` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '长途区号',
`zip` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '邮编',
`first` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '首字母',
`lng` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '经度',
`lat` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '纬度',
PRIMARY KEY (`id`) USING BTREE,
INDEX `pid`(`pid` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '省份地区表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of area
-- ----------------------------
-- ----------------------------
-- Table structure for attachment
-- ----------------------------
DROP TABLE IF EXISTS `attachment`;
CREATE TABLE `attachment` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`topic` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '细目',
`admin_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '上传管理员ID',
`user_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '上传用户ID',
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '物理路径',
`width` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '宽度',
`height` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '高度',
`name` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '原始名称',
`size` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '大小',
`mimetype` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'mime类型',
`quote` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '上传(引用)次数',
`storage` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '存储方式',
`sha1` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'sha1编码',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
`last_upload_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '最后上传时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '附件表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of attachment
-- ----------------------------
INSERT INTO `attachment` VALUES (1, 'default', 1, 0, '/storage/default/20260401/100px-页面_宠物_立绘_c1f1c5b029d71c096be47fb91195b8724346f073.png', 100, 100, '100px-页面_宠物_立绘_蹦蹦花海神球形态_1.png', 12698, 'image/png', 0, 'local', 'c1f1c5b029d71c096be47fb91195b8724346f073', 1775026612, NULL);
-- ----------------------------
-- Table structure for captcha
-- ----------------------------
DROP TABLE IF EXISTS `captcha`;
CREATE TABLE `captcha` (
`key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '验证码Key',
`code` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '验证码(加密后)',
`captcha` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '验证码数据',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
`expire_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '过期时间',
PRIMARY KEY (`key`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '验证码表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of captcha
-- ----------------------------
-- ----------------------------
-- Table structure for config
-- ----------------------------
DROP TABLE IF EXISTS `config`;
CREATE TABLE `config` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '变量名',
`group` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '分组',
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '变量标题',
`tip` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '变量描述',
`type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '变量输入组件类型',
`value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '变量值',
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '字典数据',
`rule` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '验证规则',
`extend` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '扩展属性',
`allow_del` tinyint(4) UNSIGNED NOT NULL DEFAULT 0 COMMENT '允许删除:0=否,1=是',
`weigh` int(11) NOT NULL DEFAULT 0 COMMENT '权重',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `name`(`name` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 15 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '系统配置' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of config
-- ----------------------------
INSERT INTO `config` VALUES (1, 'config_group', 'basics', 'Config group', '', 'array', '[{\"key\":\"basics\",\"value\":\"Basics\"},{\"key\":\"mail\",\"value\":\"Mail\"},{\"key\":\"config_quick_entrance\",\"value\":\"Config Quick entrance\"}]', NULL, 'required', '', 0, -1, NULL, NULL);
INSERT INTO `config` VALUES (2, 'site_name', 'basics', 'Site Name', '', 'string', 'BuildAdmin', NULL, 'required', '', 0, 99, NULL, NULL);
INSERT INTO `config` VALUES (3, 'record_number', 'basics', 'Record number', '域名备案号', 'string', '渝ICP备8888888号-1', NULL, '', '', 0, 0, NULL, NULL);
INSERT INTO `config` VALUES (4, 'version', 'basics', 'Version number', '系统版本号', 'string', 'v1.0.0', NULL, 'required', '', 0, 0, NULL, NULL);
INSERT INTO `config` VALUES (5, 'time_zone', 'basics', 'time zone', '', 'string', 'Asia/Shanghai', NULL, 'required', '', 0, 0, NULL, NULL);
INSERT INTO `config` VALUES (6, 'no_access_ip', 'basics', 'No access ip', '禁止访问站点的ip列表,一行一个', 'textarea', NULL, NULL, '', '', 0, 0, NULL, NULL);
INSERT INTO `config` VALUES (7, 'smtp_server', 'mail', 'smtp server', '', 'string', 'smtp.qq.com', NULL, '', '', 0, 9, NULL, NULL);
INSERT INTO `config` VALUES (8, 'smtp_port', 'mail', 'smtp port', '', 'string', '465', NULL, '', '', 0, 8, NULL, NULL);
INSERT INTO `config` VALUES (9, 'smtp_user', 'mail', 'smtp user', '', 'string', NULL, NULL, '', '', 0, 7, NULL, NULL);
INSERT INTO `config` VALUES (10, 'smtp_pass', 'mail', 'smtp pass', '', 'string', NULL, NULL, '', '', 0, 6, NULL, NULL);
INSERT INTO `config` VALUES (11, 'smtp_verification', 'mail', 'smtp verification', '', 'select', 'SSL', '{\"SSL\":\"SSL\",\"TLS\":\"TLS\"}', '', '', 0, 5, NULL, NULL);
INSERT INTO `config` VALUES (12, 'smtp_sender_mail', 'mail', 'smtp sender mail', '', 'string', NULL, NULL, 'email', '', 0, 4, NULL, NULL);
INSERT INTO `config` VALUES (13, 'config_quick_entrance', 'config_quick_entrance', 'Config Quick entrance', '', 'array', '[{\"key\":\"\\u6570\\u636e\\u56de\\u6536\\u89c4\\u5219\\u914d\\u7f6e\",\"value\":\"security\\/dataRecycle\"},{\"key\":\"\\u654f\\u611f\\u6570\\u636e\\u89c4\\u5219\\u914d\\u7f6e\",\"value\":\"security\\/sensitiveData\"}]', NULL, '', '', 0, 0, 1775022964, NULL);
INSERT INTO `config` VALUES (14, 'backend_entrance', 'basics', 'Backend entrance', '', 'string', '/admin', NULL, 'required', '', 0, 1, NULL, NULL);
-- ----------------------------
-- Table structure for crud_log
-- ----------------------------
DROP TABLE IF EXISTS `crud_log`;
CREATE TABLE `crud_log` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`table_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据表名',
`comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '注释',
`table` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '数据表数据',
`fields` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '字段数据',
`sync` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '同步记录',
`status` enum('delete','success','error','start') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'start' COMMENT '状态:delete=已删除,success=成功,error=失败,start=生成中',
`connection` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据库连接配置标识',
`create_time` bigint(20) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 24 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = 'CRUD记录表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of crud_log
-- ----------------------------
INSERT INTO `crud_log` VALUES (1, 'game_channel', '渠道管理', '{\"name\":\"game_channel\",\"comment\":\"渠道管理\",\"quickSearchField\":[\"id\",\"code\",\"name\"],\"defaultSortField\":\"id\",\"formFields\":[\"name\",\"remark\",\"admin_id\",\"status\",\"code\"],\"columnFields\":[\"id\",\"name\",\"user_count\",\"profit_amount\",\"create_time\",\"update_time\",\"status\",\"code\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_channel\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameChannel.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Channel.php\",\"validateFile\":\"app\\/common\\/validate\\/GameChannel.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/channel\",\"databaseConnection\":null,\"designChange\":[],\"rebuild\":\"No\"}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"e590c47d-3de8-4b9d-9233-35037259c31b\"},{\"title\":\"字符串\",\"name\":\"code\",\"comment\":\"渠道标识\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"b0db6092-45ad-4784-b549-d5c7595100df\"},{\"title\":\"字符串\",\"name\":\"name\",\"comment\":\"渠道\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"6e3d7775-939a-48c6-862b-912b961cdee9\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"admin_id\",\"comment\":\"渠道管理员\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"admin\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\auth\\\\Admin.php\",\"remote-model\":\"app\\\\admin\\\\model\\\\Admin.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"2a2d1bac-6406-4488-8626-760b0504f5b7\"},{\"title\":\"数字\",\"name\":\"user_count\",\"comment\":\"用户数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"integer\"],\"validatorMsg\":\"\",\"step\":1},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"8e98e5e0-6300-4c91-91d1-013b45ee5025\"},{\"title\":\"浮点数\",\"name\":\"profit_amount\",\"type\":\"decimal\",\"length\":5,\"precision\":2,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"利润\",\"designType\":\"float\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"float\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"6aa38660-d9ea-4242-b3fd-35f5bb3d61dc\"},{\"title\":\"状态\",\"name\":\"status\",\"comment\":\"状态:0=禁用,1=启用\",\"designType\":\"switch\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"switch\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"tinyint\",\"length\":1,\"precision\":0,\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"d1c4c3ee-2824-481e-b104-0870d26cc0c0\"},{\"title\":\"备注\",\"name\":\"remark\",\"comment\":\"备注\",\"designType\":\"textarea\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"e32dfa84-9af7-40b3-b56f-852a125a96fa\"},{\"title\":\"创建时间\",\"name\":\"create_time\",\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"20111342-c41b-4f9d-bd61-412c3caba959\"},{\"title\":\"修改时间\",\"name\":\"update_time\",\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"593a8557-fe89-4ffe-95b2-91523e8feea7\"}]', 0, 'success', 'mysql', 1775024539);
INSERT INTO `crud_log` VALUES (2, 'game_channel', '渠道管理', '{\"name\":\"game_channel\",\"comment\":\"渠道管理\",\"quickSearchField\":[\"id\",\"code\",\"name\"],\"defaultSortField\":\"id\",\"formFields\":[\"name\",\"remark\",\"status\",\"code\",\"admin_group_id\",\"admin_id\"],\"columnFields\":[\"id\",\"name\",\"user_count\",\"profit_amount\",\"create_time\",\"update_time\",\"status\",\"code\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_channel\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameChannel.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Channel.php\",\"validateFile\":\"app\\/common\\/validate\\/GameChannel.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/channel\",\"databaseConnection\":null,\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"admin_id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":9,\"newName\":\"admin_group_id\",\"oldName\":\"\",\"after\":\"remark\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":2,\"oldName\":\"name\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":10,\"newName\":\"admin_id\",\"oldName\":\"\",\"after\":\"remark\",\"sync\":true}],\"rebuild\":\"No\",\"empty\":false}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"066f98c0-db0c-4bed-9e44-e6fd3531df99\"},{\"title\":\"字符串\",\"name\":\"code\",\"comment\":\"渠道标识\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"21702f5c-5084-4d09-b591-a16d5702a9d0\"},{\"title\":\"字符串\",\"name\":\"name\",\"comment\":\"渠道名\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"e9a5b2d2-b2bb-4466-afed-85b6889e33a9\"},{\"title\":\"数字\",\"name\":\"user_count\",\"comment\":\"用户数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"integer\"],\"validatorMsg\":\"\",\"step\":1},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"2d3cfddd-97a7-44db-a76b-cd4fce580fa3\"},{\"title\":\"浮点数\",\"name\":\"profit_amount\",\"type\":\"decimal\",\"length\":5,\"precision\":2,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"利润\",\"designType\":\"float\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"float\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"a430ad3f-bf61-4be9-b63e-3decb371e8de\"},{\"title\":\"状态\",\"name\":\"status\",\"comment\":\"状态:0=禁用,1=启用\",\"designType\":\"switch\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"switch\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"tinyint\",\"length\":1,\"precision\":0,\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"c07946b5-27f3-4d51-a347-a2a614d580ef\"},{\"title\":\"备注\",\"name\":\"remark\",\"comment\":\"备注\",\"designType\":\"textarea\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"ab09ed37-30a4-48b4-a524-2c021f13cc5d\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"admin_group_id\",\"comment\":\"管理角色组\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"admin_group\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\auth\\\\Group.php\",\"remote-model\":\"app\\\\admin\\\\model\\\\AdminGroup.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"def64dda-5b7a-4cb3-9d83-688d370c3d77\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"admin_id\",\"comment\":\"管理员\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"admin\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\auth\\\\Admin.php\",\"remote-model\":\"app\\\\admin\\\\model\\\\Admin.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"357d99cd-1bf5-4759-b733-e4fa16332b71\"},{\"title\":\"创建时间\",\"name\":\"create_time\",\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"a377a7cd-3c68-4b7a-a129-d62b0a3b61c3\"},{\"title\":\"修改时间\",\"name\":\"update_time\",\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"775b1311-c9d6-4640-a5c6-8bbaabbaa00a\"}]', 0, 'success', 'mysql', 1775026507);
INSERT INTO `crud_log` VALUES (3, 'game_user', '用户管理', '{\"name\":\"game_user\",\"comment\":\"用户管理\",\"quickSearchField\":[\"id\",\"username\",\"phone\"],\"defaultSortField\":\"id\",\"formFields\":[\"username\",\"password\",\"phone\",\"remark\",\"coin\",\"game_channel_id\",\"admin_id\"],\"columnFields\":[\"id\",\"username\",\"uuid\",\"phone\",\"coin\",\"create_time\",\"create_time1\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_user\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameUser.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/User.php\",\"validateFile\":\"app\\/common\\/validate\\/GameUser.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/user\",\"databaseConnection\":null,\"designChange\":[],\"rebuild\":\"No\"}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"23e7b867-f93b-40cf-8439-a676d9c238df\"},{\"title\":\"字符串\",\"name\":\"username\",\"comment\":\"用户名\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"eb47efa5-4e6f-47ec-a8b7-13b17781a0c0\"},{\"title\":\"密码\",\"name\":\"password\",\"comment\":\"密码\",\"designType\":\"password\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"password\",\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":32,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"a195c88f-7fec-4796-97ed-0ec9f8df1254\"},{\"title\":\"字符串\",\"name\":\"uuid\",\"comment\":\"用户唯一标识\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"e111afbd-eba4-443f-a270-8d2026ec196a\"},{\"title\":\"字符串\",\"name\":\"phone\",\"comment\":\"手机号\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"84637a97-ab2d-4808-a75d-a9ed08388b22\"},{\"title\":\"备注\",\"name\":\"remark\",\"comment\":\"备注\",\"designType\":\"textarea\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"cdadfaaf-4d14-43ef-bea4-f569a5944b1c\"},{\"title\":\"浮点数\",\"name\":\"coin\",\"type\":\"decimal\",\"length\":5,\"precision\":2,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"平台币\",\"designType\":\"float\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1a6ba5f5-3d4d-4041-91ad-9cbe5746a038\",\"default\":\"0\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"game_channel_id\",\"comment\":\"所属渠道\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"07125609-9800-4335-a6a5-7afb0e0b538c\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"admin_id\",\"comment\":\"所属管理员\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"admin\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\auth\\\\Admin.php\",\"remote-model\":\"app\\\\admin\\\\model\\\\Admin.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"5c411d6c-3af7-4734-920b-b0b8f8f170ec\"},{\"title\":\"创建时间\",\"name\":\"create_time\",\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"4d0e2cf6-b034-4153-9191-22305375f1c0\"},{\"title\":\"创建时间\",\"name\":\"create_time1\",\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"2c7c0661-779d-4fd9-99ce-2845b3be99cb\"}]', 0, 'success', 'mysql', 1775028742);
INSERT INTO `crud_log` VALUES (4, 'game_user', '用户管理', '{\"name\":\"game_user\",\"comment\":\"用户管理\",\"quickSearchField\":[\"id\",\"username\",\"phone\"],\"defaultSortField\":\"id\",\"formFields\":[\"username\",\"password\",\"phone\",\"remark\",\"coin\",\"game_channel_id\",\"admin_id\"],\"columnFields\":[\"id\",\"username\",\"uuid\",\"phone\",\"coin\",\"create_time\",\"update_time\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_user\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameUser.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/User.php\",\"validateFile\":\"app\\/common\\/validate\\/GameUser.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/user\",\"databaseConnection\":null,\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"create_time1\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":10,\"newName\":\"update_time\",\"oldName\":\"\",\"after\":\"create_time\",\"sync\":true}],\"rebuild\":\"No\",\"empty\":false}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"cfc0d93c-abaf-4179-bb6c-be5bc26757dd\"},{\"title\":\"字符串\",\"name\":\"username\",\"comment\":\"用户名\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"3f9d2698-2a74-4a30-84f9-9f3e5e534ef2\"},{\"title\":\"密码\",\"name\":\"password\",\"comment\":\"密码\",\"designType\":\"password\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"password\",\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":32,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"f05054fa-69ad-4871-abb6-2dab683c0c18\"},{\"title\":\"字符串\",\"name\":\"uuid\",\"comment\":\"用户唯一标识\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"d5ef457b-06eb-4912-bd38-9af2ada3f4ec\"},{\"title\":\"字符串\",\"name\":\"phone\",\"comment\":\"手机号\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"a561f6c6-6001-4ce1-a092-24bc43d51ceb\"},{\"title\":\"备注\",\"name\":\"remark\",\"comment\":\"备注\",\"designType\":\"textarea\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"f2b38bad-3d67-4141-ae33-6dd07c65ffec\"},{\"title\":\"浮点数\",\"name\":\"coin\",\"type\":\"decimal\",\"length\":5,\"precision\":2,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"平台币\",\"designType\":\"float\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"c21513d6-73cd-409e-ac49-9b18dc607cef\",\"default\":\"0\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"game_channel_id\",\"comment\":\"所属渠道\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"051b1b92-db3e-4b2b-8197-00cc58753cb4\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"admin_id\",\"comment\":\"所属管理员\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"admin\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\auth\\\\Admin.php\",\"remote-model\":\"app\\\\admin\\\\model\\\\Admin.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"9b729ae2-ae31-43ff-9863-719c9758e5ee\"},{\"title\":\"创建时间\",\"name\":\"create_time\",\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"f3b8556c-552c-4ca3-b174-cf3e9dbe656a\"},{\"title\":\"修改时间\",\"name\":\"update_time\",\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"formBuildExclude\":true,\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"type\":\"bigint\",\"length\":16,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"57bb21c4-4694-4106-bbcc-1c93750b6c3a\"}]', 0, 'success', 'mysql', 1775028906);
INSERT INTO `crud_log` VALUES (5, 'game_config', '游戏配置', '{\"name\":\"game_config\",\"comment\":\"游戏配置\",\"quickSearchField\":[\"ID\"],\"defaultSortField\":\"group\",\"formFields\":[\"ID\",\"channel_id\",\"group\",\"name\",\"title\",\"value\",\"sort\",\"instantiation\"],\"columnFields\":[\"ID\",\"channel_id\",\"group\",\"name\",\"title\",\"sort\",\"instantiation\",\"create_time\",\"update_time\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_config\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameConfig.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Config.php\",\"validateFile\":\"app\\/common\\/validate\\/GameConfig.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/config\",\"databaseConnection\":\"mysql\",\"designChange\":[],\"rebuild\":\"No\"}', '[{\"name\":\"ID\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"4b9f73eb-bf59-46ff-83ab-0f34d29261ae\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"a593b99c-6b95-4a60-a7a0-b9bed6d45f48\"},{\"name\":\"group\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"分组\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"1558356e-dca9-4dc0-a5da-b94a886ed11b\"},{\"name\":\"name\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"配置标识\",\"designType\":\"string\",\"table\":{\"render\":\"tag\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"fc3fe0ae-98a3-4319-9f33-4a1001c72407\"},{\"name\":\"title\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"配置名称\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"3e458894-85d3-4f3e-8502-856dd3848f6b\"},{\"name\":\"value\",\"type\":\"longtext\",\"dataType\":\"longtext\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"值\",\"designType\":\"textarea\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"uuid\":\"2165edaf-c69a-4254-a3bb-d0c0ca1e9f44\"},{\"name\":\"sort\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"100\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"排序\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"46259d2b-cecf-4b47-9285-f2c9f4ef0fe8\"},{\"name\":\"instantiation\",\"type\":\"tinyint\",\"dataType\":\"tinyint(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"实例化:0=不需要,1=需要\",\"designType\":\"switch\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\"},\"uuid\":\"017e24ea-8e27-4ad4-88e0-6aaca261f2ab\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"55354f91-e37e-45ef-80eb-f3096e30fe4a\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"更新时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"bf992ced-0322-4cdb-b111-fd7c8c7175a6\"}]', 0, 'success', 'mysql', 1775096581);
INSERT INTO `crud_log` VALUES (6, 'game_play_record', '游戏游玩记录', '{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"}', '[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\')\",\"comment\":\"中奖档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"0\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]', 0, 'error', 'mysql', 1775210511);
INSERT INTO `crud_log` VALUES (7, 'game_play_record', '游戏游玩记录', '{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"}', '[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\')\",\"comment\":\"中奖档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"T1\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]', 0, 'error', 'mysql', 1775210610);
INSERT INTO `crud_log` VALUES (8, 'game_play_record', '游戏游玩记录', '{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"}', '[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\')\",\"comment\":\"中奖档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5\",\"designType\":\"string\",\"table\":{\"render\":\"tag\",\"sortable\":\"false\",\"operator\":\"eq\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"T1\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]', 0, 'error', 'mysql', 1775210656);
INSERT INTO `crud_log` VALUES (9, 'game_play_record', '游戏游玩记录', '{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"}', '[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"varchar(10)\",\"comment\":\"中奖档位\",\"designType\":\"string\",\"table\":{\"render\":\"tag\",\"sortable\":\"false\",\"operator\":\"eq\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"T1\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]', 0, 'error', 'mysql', 1775210691);
INSERT INTO `crud_log` VALUES (10, 'game_play_record', '游戏游玩记录', '{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"}', '[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"varchar(10)\",\"comment\":\"中奖档位\",\"designType\":\"string\",\"table\":{\"render\":\"tag\",\"sortable\":\"false\",\"operator\":\"eq\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"T1\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]', 0, 'error', 'mysql', 1775210701);
INSERT INTO `crud_log` VALUES (11, 'game_play_record', '游戏游玩记录', '{\"name\":\"game_play_record\",\"comment\":\"游戏游玩记录\",\"quickSearchField\":[\"id\",\"user_id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_array\",\"roll_number\",\"reward_tier\"],\"columnFields\":[\"id\",\"channel_id\",\"user_id\",\"use_coin\",\"direction\",\"reward_coin\",\"is_bigwin\",\"ante\",\"lottery_type\",\"start_index\",\"end_index\",\"roll_number\",\"create_time\",\"update_time\",\"reward_tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_play_record\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GamePlayRecord.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/PlayRecord.php\",\"validateFile\":\"app\\/common\\/validate\\/GamePlayRecord.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/playRecord\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":4,\"oldName\":\"direction\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"reward_tier\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":6,\"oldName\":\"reward_coin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":7,\"oldName\":\"is_bigwin\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":8,\"oldName\":\"ante\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":9,\"oldName\":\"lottery_type\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\"}', '[{\"name\":\"id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":false,\"autoIncrement\":true,\"comment\":\"ID\",\"designType\":\"pk\",\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"uuid\":\"dd13803c-56a8-42f9-b8c1-1da26b7e26a8\"},{\"name\":\"channel_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"e3891852-929a-43c8-ada1-ad2b83c37fae\"},{\"name\":\"user_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"用户id\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"username\",\"remote-table\":\"game_user\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\User.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameUser.php\",\"relation-fields\":\"username\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7d652c5f-d67f-4df7-b6b3-2f4431f6e82f\"},{\"name\":\"use_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0.00\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"消耗平台币\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a13b186-6831-446b-b439-a62db48e246b\"},{\"name\":\"direction\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":false,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"方向:0=顺时针,1=逆时针\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"78b8ca1e-3ad3-489a-a1b3-2397a0441a92\"},{\"title\":\"下拉框\",\"name\":\"reward_tier\",\"dataType\":\"varchar(10)\",\"comment\":\"中奖档位\",\"designType\":\"string\",\"table\":{\"render\":\"tag\",\"sortable\":\"false\",\"operator\":\"eq\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"\",\"uuid\":\"990faaaf-8032-4b4b-ab03-c1ba027d6c5d\"},{\"name\":\"reward_coin\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"中奖金额\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d500d9b6-a492-4af5-804f-a570837366f1\"},{\"name\":\"is_bigwin\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"是否中大奖:0=否,1=是\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"b03f789b-8980-454e-a22f-934dbe8fc276\"},{\"name\":\"ante\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"1\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"压注数\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7a64c6b3-35be-42f4-9f21-19fb0bd31ac8\"},{\"name\":\"lottery_type\",\"type\":\"int\",\"dataType\":\"int(3)\",\"default\":\"0\",\"defaultType\":\"INPUT\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"抽奖类型:0=付费,1=赠送\",\"designType\":\"radio\",\"table\":{\"operator\":\"RANGE\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"eef352c5-8003-49f0-87b2-fa6295f8fcae\"},{\"name\":\"start_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"起始索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"44797f69-af11-4ce1-bd0f-4c87afa28b6a\"},{\"name\":\"end_index\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"结束索引\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1807785d-f749-426b-8633-76b77d3e80ab\"},{\"name\":\"roll_array\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"摇取色子点数\",\"designType\":\"array\",\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\"},\"uuid\":\"df610cb8-6e8d-4fe8-b31e-86782f29dc62\"},{\"name\":\"roll_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"要去色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\",\"required\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"17ffa2b0-3d2d-4ef5-80fd-d9728e32d280\"},{\"name\":\"create_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"创建时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"5e1b4149-cc1b-4703-9163-eb1594014dd7\"},{\"name\":\"update_time\",\"type\":\"bigint\",\"dataType\":\"bigint(16)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"comment\":\"修改时间\",\"designType\":\"timestamp\",\"table\":{\"render\":\"datetime\",\"operator\":\"RANGE\",\"comSearchRender\":\"datetime\",\"comSearchInputAttr\":\"\",\"sortable\":\"custom\",\"width\":160,\"timeFormat\":\"yyyy-mm-dd hh:MM:ss\"},\"form\":{\"validator\":[\"date\"],\"validatorMsg\":\"\"},\"uuid\":\"3502b836-2bbd-4131-bcb1-8e1a49138c78\"}]', 0, 'error', 'mysql', 1775210769);
INSERT INTO `crud_log` VALUES (12, 'game_reward', '游戏奖励表', '{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":0,\"modelFile\":\"app\\/admin\\/model\\/game\\/Reward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/admin\\/validate\\/game\\/Reward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":6,\"newName\":\"id\",\"oldName\":\"\",\"after\":\"FIRST FIELD\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":1,\"oldName\":\"channle_id\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"tier\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"No\"}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"7939d59c-5b88-4adc-bb72-5c5973b3307b\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"527ff131-083b-4626-90b0-be883727d481\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"e9119597-9b1a-4bbb-8d68-2a9beabc8b08\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"d245aa99-476b-4e24-a317-ae2728f9a768\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"ea5821ac-adcb-4420-800d-3b8b2c3b3ccf\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"9255dea5-73d5-467d-89ce-891431fc5022\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"417364ed-51cc-4301-adf9-610e2d9fdaa6\"}]', 0, 'error', 'mysql', 1775809102);
INSERT INTO `crud_log` VALUES (13, 'game_reward', '游戏奖励表', '{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":0,\"modelFile\":\"app\\/admin\\/model\\/game\\/Reward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/admin\\/validate\\/game\\/Reward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":6,\"newName\":\"id\",\"oldName\":\"\",\"after\":\"FIRST FIELD\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":1,\"oldName\":\"channle_id\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"tier\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"No\"}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"7939d59c-5b88-4adc-bb72-5c5973b3307b\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"527ff131-083b-4626-90b0-be883727d481\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"e9119597-9b1a-4bbb-8d68-2a9beabc8b08\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"d245aa99-476b-4e24-a317-ae2728f9a768\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"ea5821ac-adcb-4420-800d-3b8b2c3b3ccf\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"9255dea5-73d5-467d-89ce-891431fc5022\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"417364ed-51cc-4301-adf9-610e2d9fdaa6\"}]', 0, 'error', 'mysql', 1775809190);
INSERT INTO `crud_log` VALUES (14, 'game_reward', '游戏奖励表', '{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":6,\"newName\":\"id\",\"oldName\":\"\",\"after\":\"FIRST FIELD\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":1,\"oldName\":\"channle_id\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"tier\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"No\"}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"7939d59c-5b88-4adc-bb72-5c5973b3307b\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"527ff131-083b-4626-90b0-be883727d481\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"e9119597-9b1a-4bbb-8d68-2a9beabc8b08\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"d245aa99-476b-4e24-a317-ae2728f9a768\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"ea5821ac-adcb-4420-800d-3b8b2c3b3ccf\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"9255dea5-73d5-467d-89ce-891431fc5022\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"417364ed-51cc-4301-adf9-610e2d9fdaa6\"}]', 0, 'error', 'mysql', 1775809213);
INSERT INTO `crud_log` VALUES (15, 'game_reward', '游戏奖励表', '{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":6,\"newName\":\"id\",\"oldName\":\"\",\"after\":\"FIRST FIELD\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":1,\"oldName\":\"channle_id\",\"newName\":\"\",\"sync\":true},{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"tier\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"No\"}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"7939d59c-5b88-4adc-bb72-5c5973b3307b\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"527ff131-083b-4626-90b0-be883727d481\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"e9119597-9b1a-4bbb-8d68-2a9beabc8b08\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"d245aa99-476b-4e24-a317-ae2728f9a768\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"ea5821ac-adcb-4420-800d-3b8b2c3b3ccf\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"9255dea5-73d5-467d-89ce-891431fc5022\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"417364ed-51cc-4301-adf9-610e2d9fdaa6\"}]', 0, 'error', 'mysql', 1775809228);
INSERT INTO `crud_log` VALUES (16, 'game_reward', '游戏奖励表', '{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[],\"rebuild\":\"No\",\"empty\":false}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"bbac165d-b723-4950-a648-0958bd28bab4\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"5b93a304-7989-4de6-b9fd-e8ebf3d53d5f\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"4ce4d369-8126-44cb-a8e2-7cb9c9f3a17b\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"f3f08292-7a93-4d55-9626-751cac816a1b\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"d7379723-d766-4cd9-a2de-dc4130e3f657\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"337847b0-2bbc-4039-9d1a-ec434536e03f\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"680abeec-3584-4573-914e-b82dc6d2c202\"}]', 0, 'success', 'mysql', 1775809270);
INSERT INTO `crud_log` VALUES (17, 'game_reward', '游戏奖励表', '{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[],\"rebuild\":\"No\",\"empty\":false}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"e1cd08f3-18ca-4d9f-9217-66387d5e312e\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"f4f36a08-d581-4f80-b0c1-295b26c6c194\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"1169e19e-324c-4303-aea7-dc3072e3f729\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"e5c0190d-9a0f-486c-a0c6-d60e36ac279a\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"ff15bcfb-ae73-4674-8a31-be184a74e3d8\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"1d6441f6-e37c-4f95-b4e9-aeb66fff38cf\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"81bf80d3-14e5-4d5d-be36-f8b524b2b01a\"}]', 0, 'success', 'mysql', 1775809329);
INSERT INTO `crud_log` VALUES (18, 'game_reward', '游戏奖励表', '{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\",\"id\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/game\\/Reward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/game\\/Reward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"del-field\",\"oldName\":\"id\",\"newName\":\"\",\"sync\":true},{\"type\":\"add-field\",\"index\":6,\"newName\":\"id\",\"oldName\":\"\",\"after\":\"remark\",\"sync\":true}],\"rebuild\":\"No\",\"empty\":false}', '[{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"7133c772-5cbf-4410-8468-9067da7fd853\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"7c8499bc-fcfc-4484-b57e-3258ba717e44\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"887dc27a-5243-4b6d-8ab3-84d803bac181\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"457f4868-fb79-40c7-b296-b91aa17ab9d1\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"db2f272f-aceb-4c78-b1fc-b67b467e64af\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"f8512bea-8ac4-4c8e-81e0-ef4c3d560f30\"},{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"b51b494f-4153-4ed0-b454-d16cb14c67e6\"}]', 0, 'error', 'mysql', 1775809349);
INSERT INTO `crud_log` VALUES (19, 'game_reward', '游戏奖励表', '{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\",\"id\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/game\\/Reward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/game\\/Reward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-order\",\"index\":0,\"newName\":\"\",\"oldName\":\"id\",\"after\":\"FIRST FIELD\",\"sync\":true}],\"rebuild\":\"Yes\",\"empty\":true}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"35334bc5-a1e7-4561-a9cf-8b9078dcbc3a\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"343d7e60-b4b9-413e-a3dc-0708277cf22c\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"61c6a454-10dd-4838-8985-ab1ded4ecd26\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"0dce5ca5-ff1a-4984-9ac3-d170a5f5c067\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"fdaa89e0-3558-4300-8516-0a3a5b85f99f\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"934f30d0-554c-448f-90f3-b86d63b4e48e\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"a696aed8-5f79-44d6-a8f2-efbf26f0d7c0\"}]', 0, 'error', 'mysql', 1775809370);
INSERT INTO `crud_log` VALUES (20, 'game_reward', '游戏奖励表', '{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[],\"rebuild\":\"Yes\",\"empty\":true}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"e78b0826-00d0-4ddd-a28d-010c2592e4ee\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"eb36bbe1-7d9d-4cc1-8c35-a3b6de64cce0\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"2549ec00-4ab9-47ce-a5ac-4f94bf1af775\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"fc0d4ae6-c8ac-4e17-b546-66870f21fd1e\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"965c8540-3906-4bc9-9a25-9a9ffbf726e0\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"f75a9fad-f7bb-4c87-868a-24df90748bb0\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"e2b0f56e-a874-4e55-a2c1-5b6f1eb9e65d\"}]', 0, 'error', 'mysql', 1775809431);
INSERT INTO `crud_log` VALUES (21, 'game_reward', '游戏奖励表', '{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[],\"rebuild\":\"Yes\",\"empty\":true}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"e78b0826-00d0-4ddd-a28d-010c2592e4ee\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"eb36bbe1-7d9d-4cc1-8c35-a3b6de64cce0\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"2549ec00-4ab9-47ce-a5ac-4f94bf1af775\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"fc0d4ae6-c8ac-4e17-b546-66870f21fd1e\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"965c8540-3906-4bc9-9a25-9a9ffbf726e0\"},{\"title\":\"下拉框\",\"name\":\"tier\",\"dataType\":\"enum(\'T1\',\'T2\',\'T3\',\'T4\',\'T5\',\'BIGWIN\')\",\"comment\":\"档位:T1=T1,T2=T2,T3=T3,T4=T4,T5=T5,BIGWIN=BIGWIN\",\"designType\":\"select\",\"table\":{\"operator\":\"eq\",\"sortable\":\"false\",\"render\":\"tag\"},\"form\":{\"validator\":[\"required\"],\"validatorMsg\":\"\",\"select-multi\":false},\"type\":\"enum\",\"length\":0,\"precision\":0,\"defaultType\":\"NONE\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"default\":\"opt0\",\"uuid\":\"f75a9fad-f7bb-4c87-868a-24df90748bb0\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"e2b0f56e-a874-4e55-a2c1-5b6f1eb9e65d\"}]', 0, 'error', 'mysql', 1775809446);
INSERT INTO `crud_log` VALUES (22, 'game_reward', '游戏奖励表', '{\"name\":\"game_reward\",\"comment\":\"游戏奖励表\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"tier\"],\"columnFields\":[\"channle_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"remark\",\"id\",\"tier\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameReward.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/Reward.php\",\"validateFile\":\"app\\/common\\/validate\\/GameReward.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/reward\",\"databaseConnection\":\"mysql\",\"designChange\":[{\"type\":\"change-field-attr\",\"index\":5,\"oldName\":\"tier\",\"newName\":\"\",\"sync\":true}],\"rebuild\":\"Yes\",\"empty\":true}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"e78b0826-00d0-4ddd-a28d-010c2592e4ee\"},{\"name\":\"channle_id\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"uuid\":\"eb36bbe1-7d9d-4cc1-8c35-a3b6de64cce0\"},{\"name\":\"grid_number\",\"type\":\"int\",\"dataType\":\"int(11)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"色子点数和\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"2549ec00-4ab9-47ce-a5ac-4f94bf1af775\"},{\"name\":\"ui_text\",\"type\":\"varchar\",\"dataType\":\"varchar(100)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"fc0d4ae6-c8ac-4e17-b546-66870f21fd1e\"},{\"name\":\"real_ev\",\"type\":\"decimal\",\"dataType\":\"decimal(10,2)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"uuid\":\"965c8540-3906-4bc9-9a25-9a9ffbf726e0\"},{\"title\":\"字符串\",\"name\":\"tier\",\"comment\":\"奖励档位T1,T2,T3,T4,T5,BIGWIN\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"be855fc1-78d6-471e-a3d3-1f978af95579\"},{\"name\":\"remark\",\"type\":\"varchar\",\"dataType\":\"varchar(200)\",\"default\":\"\",\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"comment\":\"备注信息\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"uuid\":\"e2b0f56e-a874-4e55-a2c1-5b6f1eb9e65d\"}]', 0, 'error', 'mysql', 1775809550);
INSERT INTO `crud_log` VALUES (23, 'game_reward_config', '游戏奖励配置', '{\"name\":\"game_reward_config\",\"comment\":\"游戏奖励配置\",\"quickSearchField\":[\"id\"],\"defaultSortField\":\"id\",\"formFields\":[\"game_channel_id\",\"grid_number\",\"ui_text\",\"real_ev\",\"tier\",\"remark\"],\"columnFields\":[\"id\",\"grid_number\",\"ui_text\",\"real_ev\",\"tier\",\"remark\"],\"defaultSortType\":\"desc\",\"generateRelativePath\":\"game_reward_config\",\"isCommonModel\":1,\"modelFile\":\"app\\/common\\/model\\/GameRewardConfig.php\",\"controllerFile\":\"app\\/admin\\/controller\\/game\\/RewardConfig.php\",\"validateFile\":\"app\\/common\\/validate\\/GameRewardConfig.php\",\"webViewsDir\":\"web\\/src\\/views\\/backend\\/game\\/rewardConfig\",\"databaseConnection\":null,\"designChange\":[],\"rebuild\":\"No\"}', '[{\"title\":\"主键\",\"name\":\"id\",\"comment\":\"ID\",\"designType\":\"pk\",\"formBuildExclude\":true,\"table\":{\"width\":70,\"operator\":\"RANGE\",\"sortable\":\"custom\"},\"form\":[],\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NONE\",\"null\":false,\"primaryKey\":true,\"unsigned\":true,\"autoIncrement\":true,\"uuid\":\"05997016-dadc-49f1-a010-cd501cbba713\"},{\"title\":\"远程下拉(关联表)\",\"name\":\"game_channel_id\",\"comment\":\"渠道\",\"designType\":\"remoteSelect\",\"tableBuildExclude\":true,\"table\":{\"render\":\"tags\",\"operator\":\"LIKE\",\"comSearchRender\":\"string\",\"comSearchInputAttr\":\"\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"select-multi\":false,\"remote-pk\":\"id\",\"remote-field\":\"name\",\"remote-table\":\"game_channel\",\"remote-controller\":\"app\\\\admin\\\\controller\\\\game\\\\Channel.php\",\"remote-model\":\"app\\\\common\\\\model\\\\GameChannel.php\",\"relation-fields\":\"name\",\"remote-url\":\"\",\"remote-primary-table-alias\":\"\",\"remote-source-config-type\":\"crud\"},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":true,\"autoIncrement\":false,\"uuid\":\"622845bf-8d4c-46a5-a151-8d9cb972cd4a\"},{\"title\":\"字符串\",\"name\":\"grid_number\",\"comment\":\"点数\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"94fcf44b-ceaa-417f-8d8e-21fbe4f4a1db\"},{\"title\":\"字符串\",\"name\":\"ui_text\",\"comment\":\"显示文本\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"a289a888-b4ae-40dd-9d10-3154634eacc7\"},{\"title\":\"数字\",\"name\":\"real_ev\",\"comment\":\"实际中奖\",\"designType\":\"number\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"RANGE\"},\"form\":{\"validator\":[\"number\"],\"validatorMsg\":\"\",\"step\":1},\"type\":\"int\",\"length\":10,\"precision\":0,\"defaultType\":\"NULL\",\"null\":true,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"d383ad99-47d8-4c17-8452-654bbec2306b\"},{\"title\":\"字符串\",\"name\":\"tier\",\"comment\":\"档位\",\"designType\":\"string\",\"table\":{\"render\":\"none\",\"sortable\":\"false\",\"operator\":\"LIKE\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\"},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"ea15ad42-463e-4f8b-8259-a33daaf8479b\"},{\"title\":\"备注\",\"name\":\"remark\",\"comment\":\"备注\",\"designType\":\"textarea\",\"tableBuildExclude\":true,\"table\":{\"operator\":\"false\"},\"form\":{\"validator\":[],\"validatorMsg\":\"\",\"rows\":3},\"type\":\"varchar\",\"length\":255,\"precision\":0,\"defaultType\":\"EMPTY STRING\",\"null\":false,\"primaryKey\":false,\"unsigned\":false,\"autoIncrement\":false,\"uuid\":\"d34d3bed-5a43-4e22-866a-3b8a572276e9\"}]', 0, 'success', 'mysql', 1775809842);
-- ----------------------------
-- Table structure for game_channel
-- ----------------------------
DROP TABLE IF EXISTS `game_channel`;
CREATE TABLE `game_channel` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '渠道标识',
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '渠道名',
`user_count` int(10) NOT NULL DEFAULT 0 COMMENT '用户数',
`profit_amount` decimal(5, 2) NOT NULL DEFAULT 0.00 COMMENT '利润',
`status` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 COMMENT '状态:0=禁用,1=启用',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '备注',
`admin_id` int(10) UNSIGNED NULL DEFAULT NULL COMMENT '管理员',
`admin_group_id` int(10) UNSIGNED NULL DEFAULT NULL COMMENT '管理角色组',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '渠道管理' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of game_channel
-- ----------------------------
INSERT INTO `game_channel` VALUES (1, 'test_game_one', '测试渠道1', 3, 0.00, 1, '这是测试渠道1', 2, 5, 1775025976, 1775026673);
INSERT INTO `game_channel` VALUES (2, 'test_game_two', '测试渠道2', 1, 0.00, 1, '这是测试渠道2', 3, 6, 1775026721, 1775026721);
-- ----------------------------
-- Table structure for game_config
-- ----------------------------
DROP TABLE IF EXISTS `game_config`;
CREATE TABLE `game_config` (
`ID` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`channel_id` int(11) NULL DEFAULT NULL COMMENT '渠道id',
`group` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '分组',
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '配置标识',
`title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '配置名称',
`value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '',
`sort` int(11) NULL DEFAULT 100 COMMENT '排序',
`instantiation` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 COMMENT '实例化:0=不需要,1=需要',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`ID`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 22 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '游戏配置' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of game_config
-- ----------------------------
INSERT INTO `game_config` VALUES (1, 0, 'game_config', 'game_rule', '游戏规则', '这是游戏规则', 50, 0, NULL, 1775096620);
INSERT INTO `game_config` VALUES (2, 0, 'game_config', 'game_rule_en', 'Game Rule', '这是游戏规则', 50, 0, NULL, 1775096625);
INSERT INTO `game_config` VALUES (3, 0, 'game_weight', 'default_tier_weight', '默认中奖权重', '[{\"T1\":\"1\"},{\"T2\":\"20\"},{\"T3\":\"74\"},{\"T4\":\"1\"},{\"T5\":\"4\"}]', 100, 1, NULL, 1775209668);
INSERT INTO `game_config` VALUES (4, 0, 'game_weight', 'default_bigwin_weight', '默认大奖权重', '[{\"5\":\"10000\"},{\"10\":\"1000\"},{\"15\":\"20\"},{\"20\":\"20\"},{\"25\":\"20\"},{\"30\":\"10000\"}]', 100, 1, NULL, 1775207879);
INSERT INTO `game_config` VALUES (5, 0, 'game_weight', 'default_kill_score_weight', '默认杀分权重', '[{\"T1\":\"0\"},{\"T2\":\"0\"},{\"T3\":\"70\"},{\"T4\":\"30\"},{\"T5\":\"0\"}]', 100, 1, NULL, 1775096616);
INSERT INTO `game_config` VALUES (7, 1, 'game_config', 'game_rule', '游戏规则', '这是游戏规则', 50, 0, NULL, 1775096620);
INSERT INTO `game_config` VALUES (8, 1, 'game_config', 'game_rule_en', 'Game Rule', '这是游戏规则', 50, 0, NULL, 1775096625);
INSERT INTO `game_config` VALUES (9, 1, 'game_weight', 'default_tier_weight', '默认中奖权重', '[{\"T1\":\"5\"},{\"T2\":\"20\"},{\"T3\":\"70\"},{\"T4\":\"1\"},{\"T5\":\"4\"}]', 100, 1, NULL, 1775097681);
INSERT INTO `game_config` VALUES (10, 1, 'game_weight', 'default_bigwin_weight', '默认大奖权重', '[{\"5\":\"10000\"},{\"10\":\"20\"},{\"15\":\"20\"},{\"20\":\"20\"},{\"25\":\"20\"},{\"30\":\"10000\"}]', 100, 1, NULL, 1775096611);
INSERT INTO `game_config` VALUES (11, 1, 'game_weight', 'default_kill_score_weight', '默认杀分权重', '[{\"T1\":\"0\"},{\"T2\":\"0\"},{\"T3\":\"70\"},{\"T4\":\"30\"},{\"T5\":\"0\"}]', 100, 1, NULL, 1775096616);
INSERT INTO `game_config` VALUES (12, 2, 'game_config', 'game_rule', '游戏规则', '这是游戏规则', 50, 0, NULL, 1775096620);
INSERT INTO `game_config` VALUES (13, 2, 'game_config', 'game_rule_en', 'Game Rule', '这是游戏规则', 50, 0, NULL, 1775096625);
INSERT INTO `game_config` VALUES (14, 2, 'game_weight', 'default_tier_weight', '默认中奖权重', '[{\"T1\":\"5\"},{\"T2\":\"20\"},{\"T3\":\"70\"},{\"T4\":\"1\"},{\"T5\":\"4\"}]', 100, 1, NULL, 1775097681);
INSERT INTO `game_config` VALUES (15, 2, 'game_weight', 'default_bigwin_weight', '默认大奖权重', '[{\"5\":\"10000\"},{\"10\":\"20\"},{\"15\":\"20\"},{\"20\":\"20\"},{\"25\":\"20\"},{\"30\":\"10000\"}]', 100, 1, NULL, 1775096611);
INSERT INTO `game_config` VALUES (16, 2, 'game_weight', 'default_kill_score_weight', '默认杀分权重', '[{\"T1\":\"0\"},{\"T2\":\"0\"},{\"T3\":\"70\"},{\"T4\":\"30\"},{\"T5\":\"0\"}]', 100, 1, NULL, 1775096616);
-- ----------------------------
-- Table structure for game_lottery_pool
-- ----------------------------
DROP TABLE IF EXISTS `game_lottery_pool`;
CREATE TABLE `game_lottery_pool` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`channel_id` int(11) NULL DEFAULT NULL COMMENT '渠道id',
`t1_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT 'T1档位盈利金额',
`t2_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT 'T2档位盈利金额',
`t3_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT 'T3档位盈利金额',
`t4_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT 'T4档位盈利金额',
`t5_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT 'T5档位盈利金额',
`total_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '总盈利金额',
`create_admin_id` int(11) NULL DEFAULT NULL COMMENT '创建管理员',
`set_settle_time` datetime NULL DEFAULT NULL COMMENT '设置结算日期',
`safety_line` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '安全线(超过进行杀分操作)',
`kill_score_enabled` int(3) UNSIGNED NULL DEFAULT NULL COMMENT '杀分开关:0=关闭,1=开启',
`kill_score_weight` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '杀分权重',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '游戏彩金池' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of game_lottery_pool
-- ----------------------------
-- ----------------------------
-- Table structure for game_lottery_pool_record
-- ----------------------------
DROP TABLE IF EXISTS `game_lottery_pool_record`;
CREATE TABLE `game_lottery_pool_record` (
`id` int(11) NULL DEFAULT NULL COMMENT 'ID',
`channel_id` int(11) NULL DEFAULT NULL COMMENT '渠道id',
`lottery_pool_id` int(11) NULL DEFAULT NULL COMMENT '彩金池id',
`t1_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT 'T1档位盈利金额',
`t2_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT 'T2档位盈利金额',
`t3_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT 'T3档位盈利金额',
`t4_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT 'T4档位盈利金额',
`t5_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT 'T5档位盈利金额',
`total_profit_amount` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '总盈利金额',
`settle_admin_id` int(11) NULL DEFAULT NULL COMMENT '结算管理员',
`settle_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '结算日期',
`safety_line` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '安全线(超过进行杀分操作)',
`kill_score_enabled` int(3) UNSIGNED NULL DEFAULT NULL COMMENT '杀分开关:0=关闭,1=开启',
`kill_score_weight` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '杀分权重',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '修改时间'
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '游戏彩金池结算记录' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of game_lottery_pool_record
-- ----------------------------
-- ----------------------------
-- Table structure for game_reward_config
-- ----------------------------
DROP TABLE IF EXISTS `game_reward_config`;
CREATE TABLE `game_reward_config` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`game_channel_id` int(11) NOT NULL DEFAULT 0,
`tier_reward_form` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`bigwin_form` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL,
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_game_channel_id`(`game_channel_id` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of game_reward_config
-- ----------------------------
INSERT INTO `game_reward_config` VALUES (1, 1, '[{\"grid_number\":\"5\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"6\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"7\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"8\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"9\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"10\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"11\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"12\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"13\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"14\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"15\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"16\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"17\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"18\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"19\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"20\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"21\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"22\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"23\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"24\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"25\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"26\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T1\"},{\"grid_number\":\"27\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T2\"},{\"grid_number\":\"28\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T3\"},{\"grid_number\":\"29\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T4\"},{\"grid_number\":\"30\",\"ui_text\":\"10\",\"real_ev\":\"10\",\"tier\":\"T5\"}]', '[{\"grid_number\":\"5\",\"ui_text\":\"100\",\"real_ev\":\"100\",\"tier\":\"BIGWIN\"},{\"grid_number\":\"10\",\"ui_text\":\"100\",\"real_ev\":\"100\",\"tier\":\"BIGWIN\"},{\"grid_number\":\"15\",\"ui_text\":\"100\",\"real_ev\":\"100\",\"tier\":\"BIGWIN\"},{\"grid_number\":\"20\",\"ui_text\":\"100\",\"real_ev\":\"100\",\"tier\":\"BIGWIN\"},{\"grid_number\":\"25\",\"ui_text\":\"100\",\"real_ev\":\"100\",\"tier\":\"BIGWIN\"},{\"grid_number\":\"30\",\"ui_text\":\"100\",\"real_ev\":\"100\",\"tier\":\"BIGWIN\"}]', 1775815266, 1775815296);
-- ----------------------------
-- Table structure for game_reward_config_bak_20260410172516
-- ----------------------------
DROP TABLE IF EXISTS `game_reward_config_bak_20260410172516`;
CREATE TABLE `game_reward_config_bak_20260410172516` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`game_channel_id` int(10) UNSIGNED NULL DEFAULT NULL COMMENT '渠道',
`grid_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '点数',
`ui_text` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '显示文本',
`real_ev` int(10) NULL DEFAULT NULL COMMENT '实际中奖',
`tier` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '档位',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '备注',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '游戏奖励配置' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of game_reward_config_bak_20260410172516
-- ----------------------------
-- ----------------------------
-- Table structure for game_reward_config_bak_split_20260410175132
-- ----------------------------
DROP TABLE IF EXISTS `game_reward_config_bak_split_20260410175132`;
CREATE TABLE `game_reward_config_bak_split_20260410175132` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`game_channel_id` int(11) NOT NULL DEFAULT 0,
`config_form` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL,
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_game_channel_id`(`game_channel_id` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of game_reward_config_bak_split_20260410175132
-- ----------------------------
-- ----------------------------
-- Table structure for game_reward_config_old_20260410172516
-- ----------------------------
DROP TABLE IF EXISTS `game_reward_config_old_20260410172516`;
CREATE TABLE `game_reward_config_old_20260410172516` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`game_channel_id` int(10) UNSIGNED NULL DEFAULT NULL COMMENT '渠道',
`grid_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '点数',
`ui_text` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '显示文本',
`real_ev` int(10) NULL DEFAULT NULL COMMENT '实际中奖',
`tier` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '档位',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '备注',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '游戏奖励配置' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of game_reward_config_old_20260410172516
-- ----------------------------
-- ----------------------------
-- Table structure for game_reward_config_old_split_20260410175132
-- ----------------------------
DROP TABLE IF EXISTS `game_reward_config_old_split_20260410175132`;
CREATE TABLE `game_reward_config_old_split_20260410175132` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`game_channel_id` int(11) NOT NULL DEFAULT 0,
`config_form` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL,
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `idx_game_channel_id`(`game_channel_id` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of game_reward_config_old_split_20260410175132
-- ----------------------------
-- ----------------------------
-- Table structure for game_tier_config
-- ----------------------------
DROP TABLE IF EXISTS `game_tier_config`;
CREATE TABLE `game_tier_config` (
`id` int(11) NULL DEFAULT NULL COMMENT 'ID',
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '档位配置',
`title` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标题',
`remark` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`t1_weight` decimal(5, 2) NULL DEFAULT NULL COMMENT 'T1权重',
`t2_weight` decimal(5, 2) NULL DEFAULT NULL COMMENT 'T2权重',
`t3_weight` decimal(5, 2) NULL DEFAULT NULL COMMENT 'T3权重',
`t4_weight` decimal(5, 2) NULL DEFAULT NULL COMMENT 'T4权重',
`t5_weight` decimal(5, 2) NULL DEFAULT NULL COMMENT 'T5权重'
) ENGINE = MyISAM AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '游戏彩金池' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of game_tier_config
-- ----------------------------
-- ----------------------------
-- Table structure for game_user
-- ----------------------------
DROP TABLE IF EXISTS `game_user`;
CREATE TABLE `game_user` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`game_channel_id` int(10) UNSIGNED NULL DEFAULT NULL COMMENT '所属渠道',
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '用户名',
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '密码',
`uuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '用户唯一标识',
`phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '手机号',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '备注',
`coin` decimal(10, 2) NULL DEFAULT 0.00 COMMENT '平台币',
`head_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '头像',
`admin_id` int(10) UNSIGNED NULL DEFAULT NULL COMMENT '所属管理员',
`status` tinyint(1) UNSIGNED NULL DEFAULT 1 COMMENT '状态:0=禁用,1=启用',
`tier_weight` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '档位权重',
`bigwin_weight` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '中大奖权重',
`ticket_count` json NULL COMMENT '抽奖券:{\"ante\":1,\"count\":1}',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '用户管理' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of game_user
-- ----------------------------
INSERT INTO `game_user` VALUES (1, 1, '+60123456789', '123456', 'cd19719af9876a4f449da6f2db2a89c2', '+60123456789', '测试渠道1用户名+60123456789', 0.00, NULL, 4, 1, '[{\"T1\":\"5\"},{\"T2\":\"20\"},{\"T3\":\"70\"},{\"T4\":\"1\"},{\"T5\":\"4\"}]', '[{\"5\":\"10000\"},{\"10\":\"20\"},{\"15\":\"20\"},{\"20\":\"20\"},{\"25\":\"20\"},{\"30\":\"10000\"}]', NULL, 1775028800, 1775100033);
INSERT INTO `game_user` VALUES (2, 1, '+60123456788', '$2y$10$TzITCDJCXRVGooMmrmcfzOiEF/sODUoQMRAD/0Gj3xSVe/rOM9RHC', '016168792eb933d58ba93f4dfecb10d5', '+60123456788', '测试渠道1', 0.00, NULL, 2, 1, '[{\"T1\":\"5\"},{\"T2\":\"20\"},{\"T3\":\"70\"},{\"T4\":\"1\"},{\"T5\":\"4\"}]', '[{\"5\":\"10000\"},{\"10\":\"20\"},{\"15\":\"20\"},{\"20\":\"20\"},{\"25\":\"20\"},{\"30\":\"10000\"}]', NULL, 1775030248, 1775100018);
INSERT INTO `game_user` VALUES (3, 2, '+60111111111', '$2y$10$scHhriv/UaTl9yJX6b1VxukQhd6RjuYoekAvi1m5kQfz1/tlDKsam', '485c1a5d045e036a1683bc7f16ef8291', '+60111111111', '测试渠道2用户+60111111111', 0.00, NULL, 3, 1, '[{\"T1\":\"5\"},{\"T2\":\"20\"},{\"T3\":\"70\"},{\"T4\":\"1\"},{\"T5\":\"4\"}]', '[{\"5\":\"10000\"},{\"10\":\"20\"},{\"15\":\"20\"},{\"20\":\"20\"},{\"25\":\"20\"},{\"30\":\"10000\"}]', NULL, 1775032301, 1775210806);
INSERT INTO `game_user` VALUES (4, 1, '+60111111111', '$2y$10$FUdc0htQ.qW7v1xeTEC7OurWClbUqJOMHqMPXFW.anTa3XG3XfWQO', '68c845504ae2a6b470fa06a395d6f093', '+60111111111', '测试账户', 5000.00, NULL, 2, 1, '[{\"T1\":\"1\"},{\"T2\":\"20\"},{\"T3\":\"74\"},{\"T4\":\"1\"},{\"T5\":\"4\"}]', '[{\"5\":\"10000\"},{\"10\":\"20\"},{\"15\":\"20\"},{\"20\":\"20\"},{\"25\":\"20\"},{\"30\":\"10000\"}]', '[{\"ante\": 1, \"count\": 1}]', 1775197894, 1775808028);
-- ----------------------------
-- Table structure for mall_player
-- ----------------------------
DROP TABLE IF EXISTS `mall_player`;
CREATE TABLE `mall_player` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '用户名',
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '密码',
`score` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '积分',
`create_time` bigint(20) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
`update_time` bigint(20) UNSIGNED NULL DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `username`(`username` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '积分商城用户表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of mall_player
-- ----------------------------
-- ----------------------------
-- Table structure for migrations
-- ----------------------------
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations` (
`version` bigint(20) NOT NULL,
`migration_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
`start_time` timestamp NULL DEFAULT NULL,
`end_time` timestamp NULL DEFAULT NULL,
`breakpoint` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`version`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of migrations
-- ----------------------------
-- ----------------------------
-- Table structure for phinxlog
-- ----------------------------
DROP TABLE IF EXISTS `phinxlog`;
CREATE TABLE `phinxlog` (
`version` bigint(20) NOT NULL,
`migration_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
`start_time` timestamp NULL DEFAULT NULL,
`end_time` timestamp NULL DEFAULT NULL,
`breakpoint` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`version`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of phinxlog
-- ----------------------------
INSERT INTO `phinxlog` VALUES (20230620180908, 'Install', '2026-04-01 13:50:46', '2026-04-01 13:50:48', 0);
INSERT INTO `phinxlog` VALUES (20230620180916, 'InstallData', '2026-04-01 13:56:02', '2026-04-01 13:56:02', 0);
INSERT INTO `phinxlog` VALUES (20230622221507, 'Version200', '2026-04-01 13:56:02', '2026-04-01 13:56:04', 0);
INSERT INTO `phinxlog` VALUES (20230719211338, 'Version201', '2026-04-01 13:56:04', '2026-04-01 13:56:04', 0);
INSERT INTO `phinxlog` VALUES (20230905060702, 'Version202', '2026-04-01 13:56:04', '2026-04-01 13:56:04', 0);
INSERT INTO `phinxlog` VALUES (20231111000000, 'AddConfigTimestamps', '2026-04-01 13:56:04', '2026-04-01 13:56:04', 0);
INSERT INTO `phinxlog` VALUES (20231112093414, 'Version205', '2026-04-01 13:56:04', '2026-04-01 13:56:04', 0);
INSERT INTO `phinxlog` VALUES (20231229043002, 'Version206', '2026-04-01 13:56:04', '2026-04-01 13:56:05', 0);
INSERT INTO `phinxlog` VALUES (20250318120000, 'MallPlayer', '2026-04-01 13:56:05', '2026-04-01 13:56:05', 0);
INSERT INTO `phinxlog` VALUES (20250412134127, 'Version222', '2026-04-01 13:56:05', '2026-04-01 13:56:08', 0);
-- ----------------------------
-- Table structure for security_data_recycle
-- ----------------------------
DROP TABLE IF EXISTS `security_data_recycle`;
CREATE TABLE `security_data_recycle` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '规则名称',
`controller` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '控制器',
`controller_as` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '控制器别名',
`data_table` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '对应数据表',
`connection` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据库连接配置标识',
`primary_key` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据表主键',
`status` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 COMMENT '状态:0=禁用,1=启用',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '回收规则表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of security_data_recycle
-- ----------------------------
INSERT INTO `security_data_recycle` VALUES (1, '管理员', 'auth/Admin.php', 'auth/admin', 'admin', '', 'id', 1, 1775022962, 1775022962);
INSERT INTO `security_data_recycle` VALUES (2, '管理员日志', 'auth/AdminLog.php', 'auth/adminlog', 'admin_log', '', 'id', 1, 1775022962, 1775022962);
INSERT INTO `security_data_recycle` VALUES (3, '菜单规则', 'auth/Menu.php', 'auth/menu', 'menu_rule', '', 'id', 1, 1775022962, 1775022962);
INSERT INTO `security_data_recycle` VALUES (4, '系统配置项', 'routine/Config.php', 'routine/config', 'config', '', 'id', 1, 1775022962, 1775022962);
INSERT INTO `security_data_recycle` VALUES (5, '会员', 'user/User.php', 'user/user', 'user', '', 'id', 1, 1775022962, 1775022962);
INSERT INTO `security_data_recycle` VALUES (6, '数据回收规则', 'security/DataRecycle.php', 'security/datarecycle', 'security_data_recycle', '', 'id', 1, 1775022962, 1775022962);
-- ----------------------------
-- Table structure for security_data_recycle_log
-- ----------------------------
DROP TABLE IF EXISTS `security_data_recycle_log`;
CREATE TABLE `security_data_recycle_log` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`admin_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '操作管理员',
`recycle_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '回收规则ID',
`data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '回收的数据',
`data_table` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据表',
`connection` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据库连接配置标识',
`primary_key` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据表主键',
`is_restore` tinyint(4) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否已还原:0=否,1=是',
`ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '操作者IP',
`useragent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'User-Agent',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '数据回收记录表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of security_data_recycle_log
-- ----------------------------
-- ----------------------------
-- Table structure for security_sensitive_data
-- ----------------------------
DROP TABLE IF EXISTS `security_sensitive_data`;
CREATE TABLE `security_sensitive_data` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '规则名称',
`controller` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '控制器',
`controller_as` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '控制器别名',
`data_table` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '对应数据表',
`connection` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据库连接配置标识',
`primary_key` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据表主键',
`data_fields` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '敏感数据字段',
`status` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 COMMENT '状态:0=禁用,1=启用',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '敏感数据规则表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of security_sensitive_data
-- ----------------------------
INSERT INTO `security_sensitive_data` VALUES (1, '管理员数据', 'auth/Admin.php', 'auth/admin', 'admin', '', 'id', '{\"username\":\"用户名\",\"mobile\":\"手机\",\"password\":\"密码\",\"status\":\"状态\"}', 1, 1775022962, 1775022962);
INSERT INTO `security_sensitive_data` VALUES (2, '会员数据', 'user/User.php', 'user/user', 'user', '', 'id', '{\"username\":\"用户名\",\"mobile\":\"手机号\",\"password\":\"密码\",\"status\":\"状态\",\"email\":\"邮箱地址\"}', 1, 1775022962, 1775022962);
INSERT INTO `security_sensitive_data` VALUES (3, '管理员权限', 'auth/Group.php', 'auth/group', 'admin_group', '', 'id', '{\"rules\":\"权限规则ID\"}', 1, 1775022962, 1775022962);
-- ----------------------------
-- Table structure for security_sensitive_data_log
-- ----------------------------
DROP TABLE IF EXISTS `security_sensitive_data_log`;
CREATE TABLE `security_sensitive_data_log` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`admin_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '操作管理员',
`sensitive_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '敏感数据规则ID',
`data_table` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据表',
`connection` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据库连接配置标识',
`primary_key` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '数据表主键',
`data_field` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '被修改字段',
`data_comment` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '被修改项',
`id_value` int(11) NOT NULL DEFAULT 0 COMMENT '被修改项主键值',
`before` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '修改前',
`after` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '修改后',
`ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '操作者IP',
`useragent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'User-Agent',
`is_rollback` tinyint(4) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否已回滚:0=否,1=是',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '敏感数据修改记录' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of security_sensitive_data_log
-- ----------------------------
-- ----------------------------
-- Table structure for test_build
-- ----------------------------
DROP TABLE IF EXISTS `test_build`;
CREATE TABLE `test_build` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '标题',
`keyword_rows` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '关键词',
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '内容',
`views` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '浏览量',
`likes` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '有帮助数',
`dislikes` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '无帮助数',
`note_textarea` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '备注',
`status` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 COMMENT '状态:0=禁用,1=启用',
`weigh` int(11) NOT NULL DEFAULT 0 COMMENT '权重',
`update_time` bigint(20) UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
`create_time` bigint(20) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '知识库表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of test_build
-- ----------------------------
-- ----------------------------
-- Table structure for token
-- ----------------------------
DROP TABLE IF EXISTS `token`;
CREATE TABLE `token` (
`token` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Token',
`type` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '类型',
`user_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '用户ID',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
`expire_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '过期时间',
PRIMARY KEY (`token`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '用户Token表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of token
-- ----------------------------
INSERT INTO `token` VALUES ('2996287dc528885448d403b4f6bc7ffabce023c8', 'admin', 2, 1775807960, 1776067160);
INSERT INTO `token` VALUES ('41ce31612568a4e611359c2b9921162df823d113', 'admin', 1, 1775808628, 1776067828);
INSERT INTO `token` VALUES ('90177ca3ae44401c4f2c10cd59bd793e0ebf2902', 'admin', 1, 1775807831, 1776067031);
INSERT INTO `token` VALUES ('cef3005bdc8dc77c74d0929691c118c9869d922e', 'admin', 3, 1775815322, 1776074522);
INSERT INTO `token` VALUES ('d6774b7d509c04a850e93730b81e7755f3e0d37a', 'admin', 2, 1775815362, 1776074562);
INSERT INTO `token` VALUES ('f127dd501e11c887a0ab0260e49c672802840ab0', 'admin', 1, 1775807769, 1776066969);
INSERT INTO `token` VALUES ('f6f76ffb1285276524155d07e6c8a5e2a2d13e91', 'admin', 1, 1775726846, 1775986046);
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`group_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '分组ID',
`username` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '用户名',
`nickname` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '昵称',
`email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '邮箱',
`mobile` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '手机',
`avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '头像',
`gender` tinyint(4) UNSIGNED NOT NULL DEFAULT 0 COMMENT '性别:0=未知,1=男,2=女',
`birthday` date NULL DEFAULT NULL COMMENT '生日',
`money` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '余额',
`score` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '积分',
`last_login_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '上次登录时间',
`last_login_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '上次登录IP',
`login_failure` tinyint(4) UNSIGNED NOT NULL DEFAULT 0 COMMENT '登录失败次数',
`join_ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '加入IP',
`join_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '加入时间',
`motto` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '签名',
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '密码',
`salt` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '密码盐(废弃待删)',
`status` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '状态:enable=启用,disable=禁用',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `username`(`username` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '会员表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES (1, 1, 'user', 'User', '18888888888@qq.com', '18888888888', '', 2, '2026-04-01', 0, 0, NULL, '', 0, '', NULL, '', '$2y$10$VP0dl2.sJRMHirspaS2wg.Z/FZFPRMcyFyw0VJkLP7Ow0HpUNFzI.', '', 'enable', 1775022962, 1775022962);
-- ----------------------------
-- Table structure for user_group
-- ----------------------------
DROP TABLE IF EXISTS `user_group`;
CREATE TABLE `user_group` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '组名',
`rules` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '权限节点',
`status` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 COMMENT '状态:0=禁用,1=启用',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '会员组表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of user_group
-- ----------------------------
INSERT INTO `user_group` VALUES (1, '默认分组', '*', 1, 1775022962, 1775022962);
-- ----------------------------
-- Table structure for user_money_log
-- ----------------------------
DROP TABLE IF EXISTS `user_money_log`;
CREATE TABLE `user_money_log` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`user_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '会员ID',
`money` int(11) NOT NULL DEFAULT 0 COMMENT '变更余额',
`before` int(11) NOT NULL DEFAULT 0 COMMENT '变更前余额',
`after` int(11) NOT NULL DEFAULT 0 COMMENT '变更后余额',
`memo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '备注',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '会员余额变动表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of user_money_log
-- ----------------------------
-- ----------------------------
-- Table structure for user_rule
-- ----------------------------
DROP TABLE IF EXISTS `user_rule`;
CREATE TABLE `user_rule` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`pid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '上级菜单',
`type` enum('route','menu_dir','menu','nav_user_menu','nav','button') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'menu' COMMENT '类型:route=路由,menu_dir=菜单目录,menu=菜单项,nav_user_menu=顶栏会员菜单下拉项,nav=顶栏菜单项,button=页面按钮',
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '标题',
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '规则名称',
`path` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '路由路径',
`icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '图标',
`menu_type` enum('tab','link','iframe') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'tab' COMMENT '菜单类型:tab=选项卡,link=链接,iframe=Iframe',
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Url',
`component` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '组件路径',
`no_login_valid` tinyint(4) UNSIGNED NOT NULL DEFAULT 0 COMMENT '未登录有效:0=否,1=是',
`extend` enum('none','add_rules_only','add_menu_only') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'none' COMMENT '扩展属性:none=无,add_rules_only=只添加为路由,add_menu_only=只添加为菜单',
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '备注',
`weigh` int(11) NOT NULL DEFAULT 0 COMMENT '权重',
`status` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 COMMENT '状态:0=禁用,1=启用',
`update_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '更新时间',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `pid`(`pid` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '会员菜单权限规则表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of user_rule
-- ----------------------------
INSERT INTO `user_rule` VALUES (1, 0, 'menu_dir', '我的账户', 'account', 'account', 'fa fa-user-circle', 'tab', '', '', 0, 'none', '', 98, 1, 1775022962, 1775022962);
INSERT INTO `user_rule` VALUES (2, 1, 'menu', '账户概览', 'account/overview', 'account/overview', 'fa fa-home', 'tab', '', '/src/views/frontend/user/account/overview.vue', 0, 'none', '', 99, 1, 1775022962, 1775022962);
INSERT INTO `user_rule` VALUES (3, 1, 'menu', '个人资料', 'account/profile', 'account/profile', 'fa fa-user-circle-o', 'tab', '', '/src/views/frontend/user/account/profile.vue', 0, 'none', '', 98, 1, 1775022962, 1775022962);
INSERT INTO `user_rule` VALUES (4, 1, 'menu', '修改密码', 'account/changePassword', 'account/changePassword', 'fa fa-shield', 'tab', '', '/src/views/frontend/user/account/changePassword.vue', 0, 'none', '', 97, 1, 1775022962, 1775022962);
INSERT INTO `user_rule` VALUES (5, 1, 'menu', '积分记录', 'account/integral', 'account/integral', 'fa fa-tag', 'tab', '', '/src/views/frontend/user/account/integral.vue', 0, 'none', '', 96, 1, 1775022962, 1775022962);
INSERT INTO `user_rule` VALUES (6, 1, 'menu', '余额记录', 'account/balance', 'account/balance', 'fa fa-money', 'tab', '', '/src/views/frontend/user/account/balance.vue', 0, 'none', '', 95, 1, 1775022962, 1775022962);
-- ----------------------------
-- Table structure for user_score_log
-- ----------------------------
DROP TABLE IF EXISTS `user_score_log`;
CREATE TABLE `user_score_log` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
`user_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '会员ID',
`score` int(11) NOT NULL DEFAULT 0 COMMENT '变更积分',
`before` int(11) NOT NULL DEFAULT 0 COMMENT '变更前积分',
`after` int(11) NOT NULL DEFAULT 0 COMMENT '变更后积分',
`memo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '备注',
`create_time` bigint(16) UNSIGNED NULL DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '会员积分变动表' ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of user_score_log
-- ----------------------------
SET FOREIGN_KEY_CHECKS = 1;