diff --git a/README.md b/README.md index af8cd88..859f54f 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ php webman migrate **开发环境需同时启动后端与前端:** -1. **启动后端(API 服务,端口 8787):** +1. **启动后端(API 服务,端口 7979):** **Linux / Mac:** ```bash @@ -184,11 +184,11 @@ php webman migrate - 前台地址:http://localhost:1818/index.html/#/ - 后台地址:http://localhost:1818/index.html/#/admin -> 注意:前端通过 Vite 代理将 `/api`、`/admin`、`/install` 转发到后端 8787 端口,请勿直接访问 8787 端口的前端页面,否则可能出现 404。 +> 注意:前端通过 Vite 代理将 `/api`、`/admin`、`/install` 转发到后端 7979 端口,请勿直接访问 8787 端口的前端页面,否则可能出现 404。 ### 5.6 生产环境 Nginx(反向代理 Webman) -部署到服务器时,若使用 **Nginx** 作为站点入口,需将请求转发到本机 **Webman** 进程(默认监听端口与 `config/process.php` 中 `listen` 一致,一般为 `8787`,反代目标使用 `127.0.0.1:8787`)。 +部署到服务器时,若使用 **Nginx** 作为站点入口,需将请求转发到本机 **Webman** 进程(默认监听端口与 `config/process.php` 中 `listen` 一致,一般为 `7979`,反代目标使用 `127.0.0.1:8787`)。 在站点 **`server { }`** 块中可增加如下写法:**先由 Nginx 根据 `root` 判断是否存在对应静态文件;不存在则转发到 Webman**(`root` 建议指向项目 `public` 目录)。 @@ -201,7 +201,7 @@ location ^~ / { proxy_http_version 1.1; proxy_set_header Connection ""; if (!-f $request_filename) { - proxy_pass http://127.0.0.1:8787; + proxy_pass http://127.0.0.1:7979; } } ``` diff --git a/app/api/controller/Install.php b/app/api/controller/Install.php index d9483fb..ad327be 100644 --- a/app/api/controller/Install.php +++ b/app/api/controller/Install.php @@ -663,14 +663,14 @@ class Install extends Api /** * 获取安装完成后的访问地址(根据请求来源区分 API 与前端开发模式) - * - 通过 API 访问(8787):index#/admin、index#/(无 index 与 # 之间的斜杠) + * - 通过 API 访问(7979):index#/admin、index#/(无 index 与 # 之间的斜杠) * - 通过前端开发服务访问(1818):/#/admin、/#/ */ public function accessUrls(Request $request): Response { $this->setRequest($request); - $host = $request->header('host', '127.0.0.1:8787'); - $port = '8787'; + $host = $request->header('host', '127.0.0.1:7979'); + $port = '7979'; if (str_contains($host, ':')) { $port = substr($host, strrpos($host, ':') + 1); } diff --git a/config/plugin/webman/push/app.php b/config/plugin/webman/push/app.php index 303f438..08595ad 100644 --- a/config/plugin/webman/push/app.php +++ b/config/plugin/webman/push/app.php @@ -5,6 +5,6 @@ return [ 'api' => 'http://0.0.0.0:3232', 'app_key' => '6d0af5971ad191f2dc8a500885cb79c7', 'app_secret' => 'c457f0be89cd48d481b37f16c0a97f5f', - 'channel_hook' => 'http://127.0.0.1:8787/plugin/webman/push/hook', + 'channel_hook' => 'http://127.0.0.1:7979/plugin/webman/push/hook', 'auth' => '/plugin/webman/push/auth' ]; \ No newline at end of file diff --git a/config/process.php b/config/process.php index 886539c..0d49ea4 100644 --- a/config/process.php +++ b/config/process.php @@ -21,7 +21,7 @@ global $argv; return [ 'webman' => [ 'handler' => Http::class, - 'listen' => 'http://0.0.0.0:8787', + 'listen' => 'http://0.0.0.0:7979', 'count' => cpu_count() * 4, 'user' => '', 'group' => '', diff --git a/database/sql/buildadmin-webman-game-number_原版_用于数据恢复.sql b/database/sql/buildadmin-webman-game-number_原版_用于数据恢复.sql index e201bd5..ee9a3b4 100644 --- a/database/sql/buildadmin-webman-game-number_原版_用于数据恢复.sql +++ b/database/sql/buildadmin-webman-game-number_原版_用于数据恢复.sql @@ -134,7 +134,7 @@ CREATE TABLE `admin_log` ( LOCK TABLES `admin_log` WRITE; /*!40000 ALTER TABLE `admin_log` DISABLE KEYS */; -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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(55,1,'admin','//localhost:8787/admin/Index/login','登录','{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"c6b92908-1358-4e15-a70b-ca932d31eac6\",\"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',1776074780),(56,1,'admin','//localhost:8787/admin/user.ScoreLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"10\",\"score\":\"10\"}','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',1776135224),(57,1,'admin','//localhost:8787/admin/user.ScoreLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"20\",\"score\":\"20\"}','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',1776135242),(58,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"10\",\"money\":\"10\"}','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',1776135275),(59,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"30\",\"money\":\"30\"}','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',1776135304),(60,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"40\",\"money\":\"40\"}','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',1776135448),(61,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"20\",\"money\":\"20\"}','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',1776135496),(62,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"20\",\"money\":\"20\"}','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',1776135559),(63,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"20\",\"money\":\"20\"}','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',1776136008),(64,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"30\",\"money\":\"30\"}','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',1776136113),(65,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"30\",\"money\":\"30\"}','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',1776136205),(66,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"0.5\",\"money\":\"0.5\"}','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',1776136234),(67,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"30\",\"money\":\"30\"}','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',1776137145),(68,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"30\",\"money\":\"30\"}','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',1776137434); +INSERT INTO `admin_log` VALUES (1,0,'未知','//localhost:7979/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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(55,1,'admin','//localhost:8787/admin/Index/login','登录','{\"username\":\"admin\",\"password\":\"***\",\"keep\":false,\"captchaId\":\"c6b92908-1358-4e15-a70b-ca932d31eac6\",\"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',1776074780),(56,1,'admin','//localhost:8787/admin/user.ScoreLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"10\",\"score\":\"10\"}','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',1776135224),(57,1,'admin','//localhost:8787/admin/user.ScoreLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"20\",\"score\":\"20\"}','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',1776135242),(58,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"10\",\"money\":\"10\"}','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',1776135275),(59,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"30\",\"money\":\"30\"}','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',1776135304),(60,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"40\",\"money\":\"40\"}','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',1776135448),(61,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"20\",\"money\":\"20\"}','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',1776135496),(62,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"20\",\"money\":\"20\"}','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',1776135559),(63,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"20\",\"money\":\"20\"}','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',1776136008),(64,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"30\",\"money\":\"30\"}','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',1776136113),(65,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"30\",\"money\":\"30\"}','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',1776136205),(66,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"0.5\",\"money\":\"0.5\"}','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',1776136234),(67,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"30\",\"money\":\"30\"}','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',1776137145),(68,1,'admin','//localhost:8787/admin/user.MoneyLog/add','未知(add)','{\"user_id\":\"1\",\"memo\":\"30\",\"money\":\"30\"}','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',1776137434); /*!40000 ALTER TABLE `admin_log` ENABLE KEYS */; UNLOCK TABLES; diff --git a/database/webman-buildadmin-dafuweng_20260401171133_backup.sql b/database/webman-buildadmin-dafuweng_20260401171133_backup.sql index 7bd4972..66e07e9 100644 --- a/database/webman-buildadmin-dafuweng_20260401171133_backup.sql +++ b/database/webman-buildadmin-dafuweng_20260401171133_backup.sql @@ -134,7 +134,7 @@ CREATE TABLE `admin_log` ( LOCK TABLES `admin_log` WRITE; /*!40000 ALTER TABLE `admin_log` DISABLE KEYS */; -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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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 (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),(2,1,'admin','//localhost:7979/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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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),(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); /*!40000 ALTER TABLE `admin_log` ENABLE KEYS */; UNLOCK TABLES; diff --git a/docker-compose.yml b/docker-compose.yml index 352871e..4de6cd5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,5 +7,5 @@ services: volumes: - "./:/app" ports: - - "8787:8787" + - "7979:7979" command: ["php", "start.php", "start" ] \ No newline at end of file diff --git a/docs/nginx.conf.example b/docs/nginx.conf.example index 47833c2..770d454 100644 --- a/docs/nginx.conf.example +++ b/docs/nginx.conf.example @@ -2,7 +2,7 @@ # 将 server_name 和 root 改为实际值后,放入 nginx 的 conf.d 或 sites-available upstream webman { - server 127.0.0.1:8787; + server 127.0.0.1:7979; keepalive 10240; } diff --git a/web/.env.development b/web/.env.development index 73f4d6c..0cf3368 100644 --- a/web/.env.development +++ b/web/.env.development @@ -4,5 +4,5 @@ ENV = 'development' # base路径 VITE_BASE_PATH = './' -# 本地环境接口地址 - 用空字符串走同源,由 vite 代理到 8787,避免 CORS +# 本地环境接口地址 - 用空字符串走同源,由 vite 代理到 7979,避免 CORS VITE_AXIOS_BASE_URL = '' diff --git a/web/vite.config.ts b/web/vite.config.ts index 2082446..728553e 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -29,10 +29,10 @@ const viteConfig = ({ mode }: ConfigEnv): UserConfig => { open: VITE_OPEN != 'false', // 开发时把 /api、/admin、/install 代理到 webman,避免跨域 proxy: { - '/api': { target: 'http://localhost:8787', changeOrigin: true }, - '/admin': { target: 'http://localhost:8787', changeOrigin: true }, - '/install': { target: 'http://localhost:8787', changeOrigin: true }, - '/plugin': { target: 'http://localhost:8787', changeOrigin: true }, + '/api': { target: 'http://localhost:7979', changeOrigin: true }, + '/admin': { target: 'http://localhost:7979', changeOrigin: true }, + '/install': { target: 'http://localhost:7979', changeOrigin: true }, + '/plugin': { target: 'http://localhost:7979', changeOrigin: true }, }, }, build: {