x1_backstage.sql 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : 192.168.3.245
  4. Source Server Type : MySQL
  5. Source Server Version : 50727 (5.7.27)
  6. Source Host : 192.168.3.245:33061
  7. Source Schema : x1_backstage
  8. Target Server Type : MySQL
  9. Target Server Version : 50727 (5.7.27)
  10. File Encoding : 65001
  11. Date: 05/03/2025 09:32:51
  12. */
  13. SET NAMES utf8mb4;
  14. SET FOREIGN_KEY_CHECKS = 0;
  15. -- ----------------------------
  16. -- Table structure for api_doc
  17. -- ----------------------------
  18. DROP TABLE IF EXISTS `api_doc`;
  19. CREATE TABLE `api_doc` (
  20. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  21. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  22. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  23. `href_url` varchar(255) DEFAULT '' COMMENT '链接地址',
  24. `comment` varchar(255) DEFAULT '' COMMENT '接口说明',
  25. `param_form` varchar(2000) DEFAULT '' COMMENT '参数格式',
  26. `return_form` varchar(2000) DEFAULT '' COMMENT '返回格式',
  27. PRIMARY KEY (`id`)
  28. ) ENGINE=InnoDB AUTO_INCREMENT=100000144 DEFAULT CHARSET=utf8mb4 COMMENT='接口说明';
  29. -- ----------------------------
  30. -- Records of api_doc
  31. -- ----------------------------
  32. BEGIN;
  33. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000001, '/gameRegion/data.auth', '请求渠道大区数据', 'channelId:long;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"regionId\":0,\"name\":null,\"channelId\":0,\"channelName\":null,\"serverType\":0,\"insertTime\":null,\"updateTime\":null}]}');
  34. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000002, '/gameRegion/options.do', '渠道大区下拉菜单数据', 'channelId:long;\n', '{\"options\":[{\"value\":0,\"text\":null}]}');
  35. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000003, '/gameRegion/delete.authw', '删除渠道大区数据', 'channelId:long;\nregionId:long;\n', '');
  36. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000004, '/gameRegion/save.authw', '保存渠道大区数据,ID小于等于0时新增,大于0时修改', 'id:long;\nregionId:int;\nname:String;\nchannelId:long;\nserverType:int;\n', '{\"id\":0,\"regionId\":0,\"name\":null,\"channelId\":0,\"channelName\":null,\"serverType\":0,\"insertTime\":null,\"updateTime\":null}');
  37. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000005, '/playerPayRemain/data.auth', '请求付费留存数据', 'serverUid:int;\nstartTime:int;\nendTime:int;\n', '{\"count\":0,\"data\":[{\"serverUid\":0,\"serverId\":0,\"serverName\":null,\"bornDate\":null,\"dayBase\":0,\"day0\":0,\"day1\":0,\"day2\":0,\"day3\":0,\"day4\":0,\"day5\":0,\"day6\":0,\"day7\":0,\"day8\":0,\"day9\":0,\"day10\":0,\"day11\":0,\"day12\":0,\"day13\":0,\"day14\":0,\"day30\":0,\"day60\":0,\"day90\":0}]}');
  38. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000006, '/playerPayRemain/manual.auth', '手动触发昨天付费留存数据统计', '', '');
  39. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000007, '/playerLtv/data.auth', '请求付费LTV数据', 'serverUid:int;\nstartTime:int;\nendTime:int;\n', '{\"count\":0,\"data\":[{\"serverUid\":0,\"serverId\":0,\"serverName\":null,\"bornDate\":null,\"playerCount\":0,\"day0\":0,\"day1\":0,\"day2\":0,\"day3\":0,\"day4\":0,\"day5\":0,\"day6\":0,\"day7\":0,\"day8\":0,\"day9\":0,\"day10\":0,\"day11\":0,\"day12\":0,\"day13\":0,\"day14\":0,\"day30\":0,\"day60\":0,\"day90\":0}]}');
  40. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000008, '/playerLtv/manual.auth', '手动触发昨天LTV数据统计', 'command:String;\n', '');
  41. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000009, '/gameChannel/data.auth', '请求渠道数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"platformId\":0,\"platformName\":null,\"userId\":0,\"userName\":null,\"bulletinId\":0,\"programVersion\":null,\"resourceVersion\":null,\"insertTime\":null,\"updateTime\":null}]}');
  42. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000010, '/gameChannel/options.do', '请求渠道下拉菜单数据', '', '{\"options\":[{\"value\":0,\"text\":null}]}');
  43. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000011, '/gameChannel/change.do', '切换渠道', 'channelId:long;\n', '');
  44. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000012, '/gameChannel/delete.authw', '删除渠道数据,并删除与之关联的服务器关系数据', 'channelId:long;\n', '');
  45. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000013, '/gameChannel/save.authw', '保存渠道数据,数据ID小于等于0时插入数据,大于0时更新对应数据', 'id:long;\nname:String;\nbulletinId:long;\nplatformId:long;\nprogramVersion:String;\nresourceVersion:String;\n', '{\"id\":0,\"name\":null,\"platformId\":0,\"platformName\":null,\"userId\":0,\"userName\":null,\"bulletinId\":0,\"programVersion\":null,\"resourceVersion\":null,\"insertTime\":null,\"updateTime\":null}');
  46. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2025-02-27 10:13:48', 100000014, '/player/data.auth', '请求玩家数据', 'playerId:long;\nname:String;\nopenId:String;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"channelInfo\":null,\"serverInfo\":null,\"playerId\":0,\"openId\":null,\"nick\":null,\"head\":null,\"sex\":0,\"level\":0,\"gold\":0,\"diamond\":0,\"fighting\":0,\"recharge\":0,\"online\":false,\"dailyOnline\":0,\"bornTime\":{\"date\":{\"year\":2025,\"month\":2,\"day\":27},\"time\":{\"hour\":10,\"minute\":13,\"second\":48,\"nano\":296000000}},\"lastLoginTime\":{\"date\":{\"year\":2025,\"month\":2,\"day\":27},\"time\":{\"hour\":10,\"minute\":13,\"second\":48,\"nano\":297000000}},\"quickUrl\":null}]}');
  47. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000015, '/player/hero.auth', '请求玩家英雄数据', 'playerId:long;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"quality\":0,\"level\":0,\"num\":0,\"fighting\":0}]}');
  48. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000016, '/player/bag.auth', '请求玩家背包数据', 'playerId:long;\n', '{\"count\":0,\"data\":[{\"itemId\":0,\"itemName\":null,\"haveNum\":0}]}');
  49. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000017, '/api/playerReport', '上报玩家数据,给游戏服的接口', 'serverId:int;\ndatas:List;\n', '');
  50. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000018, '/player/detail.auth', '请求玩家数据详情', 'playerId:long;\n', '{\"count\":0,\"data\":[{\"id\":0,\"openId\":null,\"serverId\":0,\"nick\":null,\"head\":null,\"sex\":0,\"level\":0,\"exp\":0,\"gold\":0,\"diamond\":0,\"nowFighting\":0,\"hisMaxFighting\":0,\"changeNameNum\":0,\"online\":false,\"lastLoginTime\":null,\"lastLogoutTime\":null,\"forbidEndTime\":null,\"dailyOnline\":0,\"realTotalPay\":0,\"loginIp\":null,\"loginDeviceType\":null,\"loginDeviceId\":null,\"loginVersion\":null,\"createIp\":null,\"createDeviceType\":null,\"createDeviceId\":null,\"createChannel\":0,\"oldPlayer\":false}]}');
  51. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000019, '/rechargeVirtual/data.auth', '请求虚拟充值(内部充值)数据', 'openId:String;\nplayerId:long;\nnick:String;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"channelId\":0,\"serverUid\":0,\"serverId\":0,\"serverName\":null,\"playerId\":0,\"nick\":null,\"openId\":null,\"productId\":0,\"productName\":null,\"money\":0,\"userId\":0,\"userName\":null,\"status\":0,\"remark\":null,\"insertTime\":null,\"updateTime\":null}]}');
  52. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000020, '/rechargeVirtual/add.authw', '发放虚拟充值(内部充值)', 'playerId:long;\nproductId:int;\nremark:String;\n', '{\"id\":0,\"channelId\":0,\"serverUid\":0,\"serverId\":0,\"serverName\":null,\"playerId\":0,\"nick\":null,\"openId\":null,\"productId\":0,\"productName\":null,\"money\":0,\"userId\":0,\"userName\":null,\"status\":0,\"remark\":null,\"insertTime\":null,\"updateTime\":null}');
  53. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000021, '/itemCfg/data.auth', '请求游戏道具数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"insertTime\":null,\"updateTime\":null}]}');
  54. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000022, '/itemCfg/options.do', '道具下拉菜单数据', '', '{\"options\":[{\"value\":0,\"text\":null}]}');
  55. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000023, '/itemCfg/refresh.auth', '更新游戏道具数据', '', '');
  56. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000024, '/recruitRefreshDotData/data.auth', '招募刷新打点数据', 'serverUid:int;\nstartTime:int;\nendTime:int;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"dateStr\":null,\"num0to10\":0,\"num11to20\":0,\"num21toMax\":0,\"joinNum\":0,\"createNum\":0}]}');
  57. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000025, '/serverOpen/data.auth', '请求服务器开服数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"platformId\":0,\"platformName\":null,\"serverId\":0,\"name\":null,\"socketType\":null,\"externalIp\":null,\"internalIp\":null,\"tcpPort\":0,\"httpPort\":0,\"dbIp\":null,\"dbPort\":null,\"dbUser\":null,\"dbPwd\":null,\"dbGameName\":null,\"dbLogName\":null,\"hide\":false,\"status\":0,\"recommend\":false,\"openTime\":null,\"realOpenTime\":null,\"sendOpenStatus\":0,\"opening\":false,\"serverType\":0,\"running\":false,\"heartTime\":null,\"registerNum\":0,\"createNum\":0,\"onlineNum\":0,\"battleNum\":0,\"currBattleNum\":0,\"maxMemory\":null,\"freeMemory\":null,\"totalMemory\":null,\"leftMemory\":null,\"usedMemory\":null}]}');
  58. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000026, '/serverOpen/openNow.authw', '立刻开服', 'serverUid:int;\n', '{\"id\":0,\"platformId\":0,\"platformName\":null,\"serverId\":0,\"name\":null,\"socketType\":null,\"externalIp\":null,\"internalIp\":null,\"tcpPort\":0,\"httpPort\":0,\"dbIp\":null,\"dbPort\":null,\"dbUser\":null,\"dbPwd\":null,\"dbGameName\":null,\"dbLogName\":null,\"hide\":false,\"status\":0,\"recommend\":false,\"openTime\":null,\"realOpenTime\":null,\"sendOpenStatus\":0,\"opening\":false,\"serverType\":0,\"running\":false,\"heartTime\":null,\"registerNum\":0,\"createNum\":0,\"onlineNum\":0,\"battleNum\":0,\"currBattleNum\":0,\"maxMemory\":null,\"freeMemory\":null,\"totalMemory\":null,\"leftMemory\":null,\"usedMemory\":null}');
  59. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000027, '/serverOpen/editOpenTime.authw', '设置服务器预期开服时间', 'serverUid:int;\nopenTime:long;\n', '{\"id\":0,\"platformId\":0,\"platformName\":null,\"serverId\":0,\"name\":null,\"socketType\":null,\"externalIp\":null,\"internalIp\":null,\"tcpPort\":0,\"httpPort\":0,\"dbIp\":null,\"dbPort\":null,\"dbUser\":null,\"dbPwd\":null,\"dbGameName\":null,\"dbLogName\":null,\"hide\":false,\"status\":0,\"recommend\":false,\"openTime\":null,\"realOpenTime\":null,\"sendOpenStatus\":0,\"opening\":false,\"serverType\":0,\"running\":false,\"heartTime\":null,\"registerNum\":0,\"createNum\":0,\"onlineNum\":0,\"battleNum\":0,\"currBattleNum\":0,\"maxMemory\":null,\"freeMemory\":null,\"totalMemory\":null,\"leftMemory\":null,\"usedMemory\":null}');
  60. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000028, '/fixDesignResult/data.auth', '请求热更配置结果数据', 'id:long;\n', '{\"count\":0,\"data\":[{\"id\":0,\"fixId\":0,\"serverUid\":0,\"serverId\":0,\"name\":null,\"status\":0,\"code\":0,\"message\":null,\"insertTime\":null,\"updateTime\":null}]}');
  61. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000029, '/fixDesign/data.auth', '请求热更配置记录', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"serverUids\":[],\"fileNames\":[],\"userId\":0,\"userName\":null,\"fixTime\":null,\"insertTime\":null,\"updateTime\":null}]}');
  62. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000030, '/loginDotData/data.auth', '登录打点接口', 'startTime:int;\nendTime:int;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"channelId\":0,\"dateStr\":null,\"reqResUrlBegin\":0,\"reqResUrlSucess\":0,\"reqResUrlFail\":0,\"sdkLoginBegin\":0,\"sdkLoginSucess\":0,\"sdkLoginFail\":0,\"reqServerVerifyBegin\":0,\"reqServerVerifySucess\":0,\"reqServerVerifyFail\":0,\"reqServerListBegin\":0,\"reqServerListSucess\":0,\"reqServerListFail\":0,\"startGame\":0,\"reqSocketConnectSucess\":0,\"reqSocketLoginBegin\":0,\"reqSocketLoginSucess\":0,\"reqSocketLoginFail\":0,\"createSucc\":0,\"reqServerPushDataEnd\":0,\"inGame\":0,\"insertTime\":null,\"updateTime\":null}]}');
  63. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000031, '/api/loginDot', '提供给游戏客户端使用,非主后台的登录打点接口', 'channelId:long;\nopenId:String;\ntiming:int;\n', '');
  64. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000032, '/api/loginDotMain', '主后台的登录打点接口', 'channelId:long;\nopenId:String;\ntiming:int;\n', '');
  65. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000033, '/api/loginDotReport', '提供给游戏服使用,上报登录打点接口', 'datas:List;\n', '');
  66. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000034, '/clientVersion/data.auth', '请求客户端版本信息数据', 'channelId:long;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"channelId\":0,\"channelName\":null,\"versionCode\":0,\"serverType\":0,\"remoteUrl\":null,\"resourceVersion\":null,\"remark\":null,\"pcResourceVersion\":null,\"quickUrl\":null,\"insertTime\":null,\"updateTime\":null}]}');
  67. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000035, '/clientVersion/delete.authw', '删除版本信息数据,数据ID小于等于0时插入数据,大于0时更新对应数据', 'id:long;\n', '');
  68. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000036, '/clientVersion/save.authw', '保存版本信息数据,数据ID小于等于0时插入数据,大于0时更新对应数据', 'id:long;\nchannelId:long;\nversionCode:int;\nserverType:int;\nremark:String;\nremoteUrl:String;\nresourceVersion:String;\npcResourceVersion:String;\nquickUrl:String;\n', '{\"id\":0,\"channelId\":0,\"channelName\":null,\"versionCode\":0,\"serverType\":0,\"remoteUrl\":null,\"resourceVersion\":null,\"remark\":null,\"pcResourceVersion\":null,\"quickUrl\":null,\"insertTime\":null,\"updateTime\":null}');
  69. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000037, '/playerScatterLog/data.auth', '获取玩家在线时间占比', 'startTime:int;\nendTime:int;\nserverUids:List;\n', '{\"count\":0,\"data\":[{\"date\":0,\"timePeriod\":0,\"timePeriodText\":null,\"onlineNum\":0,\"onlineBase\":0}]}');
  70. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000038, '/whiteList/data.auth', '请求白名单数据', 'openId:String;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"channelId\":0,\"channelName\":null,\"openId\":null,\"userId\":0,\"userName\":null,\"remark\":null,\"insertTime\":null,\"updateTime\":null}]}');
  71. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000039, '/api/isWhiteList', '是否为白名单,给游戏服的接口', 'channelId:int;\nopenId:String;\n', '\"\"');
  72. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000040, '/whiteList/delete.authw', '删除白名单', 'id:long;\n', '');
  73. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000041, '/whiteList/add.authw', '添加白名单', 'openId:String;\nremark:String;\n', '{\"id\":0,\"channelId\":0,\"channelName\":null,\"openId\":null,\"userId\":0,\"userName\":null,\"remark\":null,\"insertTime\":null,\"updateTime\":null}');
  74. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000042, '/mail/resend.auth', '重新发送系统邮件', 'id:long;\n', '');
  75. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000043, '/mail/save.authw', '保存系统邮件数据', 'id:long;\ntitle:String;\ncontent:String;\nrewards:String;\ntype:int;\nserverUids:Set;\npids:String;\nplayerLevel:int;\n', '{\"id\":0,\"userId\":0,\"userName\":null,\"title\":null,\"content\":null,\"rewards\":[{\"item\":0,\"name\":null,\"num\":0}],\"type\":0,\"serverUids\":[],\"sendServerUids\":[],\"deleteServerUids\":[],\"pids\":null,\"playerLevel\":0,\"status\":0,\"checkUserId\":0,\"checkUserName\":null,\"insertTime\":null,\"updateTime\":null}');
  76. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000044, '/mail/data.auth', '请求系统邮件数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"userId\":0,\"userName\":null,\"title\":null,\"content\":null,\"rewards\":null,\"type\":0,\"pids\":null,\"playerLevel\":0,\"status\":0,\"checkUserId\":0,\"checkUserName\":null,\"serverUids\":null}]}');
  77. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000045, '/mail/checkPass.authw', '系统邮件审核通过', 'ids:List;\n', '{\"mails\":[{\"id\":0,\"userId\":0,\"userName\":null,\"title\":null,\"content\":null,\"rewards\":[],\"type\":0,\"serverUids\":[],\"sendServerUids\":[],\"deleteServerUids\":[],\"pids\":null,\"playerLevel\":0,\"status\":0,\"checkUserId\":0,\"checkUserName\":null,\"insertTime\":null,\"updateTime\":null}]}');
  78. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000046, '/mail/checkNotPass.authw', '系统邮件审核不通过', 'ids:List;\n', '{\"mails\":[{\"id\":0,\"userId\":0,\"userName\":null,\"title\":null,\"content\":null,\"rewards\":[],\"type\":0,\"serverUids\":[],\"sendServerUids\":[],\"deleteServerUids\":[],\"pids\":null,\"playerLevel\":0,\"status\":0,\"checkUserId\":0,\"checkUserName\":null,\"insertTime\":null,\"updateTime\":null}]}');
  79. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000047, '/mail/delete.authw', '通知游戏服删除系统邮件', 'id:long;\n', '');
  80. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000048, '/mail/mailResult.auth', '请求系统邮件发送结果数据', 'id:long;\n', '{\"count\":0,\"data\":[{\"id\":0,\"mailId\":0,\"serverUid\":0,\"serverId\":0,\"serverName\":null,\"typeText\":null,\"status\":0,\"message\":null,\"insertTime\":null,\"updateTime\":null}]}');
  81. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000049, '/serverCommand/send.authw', '发送服务器指令', 'serverUid:long;\ncommand:String;\n', '');
  82. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000050, '/giftCodeShareLog/data.auth', '请求通用礼包码使用日志数据', 'code:String;\nplayerId:long;\nplayerName:String;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"code\":null,\"playerId\":0,\"playerName\":null,\"insertTime\":null,\"updateTime\":null}]}');
  83. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000051, '/userfunction/data.auth', '请求用户权限数据', 'userName:String;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"userId\":0,\"userName\":null,\"functionId\":0,\"functionName\":null,\"writee\":false,\"grantUserId\":0,\"grantUserName\":null,\"insertTime\":null,\"updateTime\":null}]}');
  84. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000052, '/userfunction/options.auth', '获取可授权的菜单数据', 'userId:long;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"has\":false,\"writee\":false,\"module\":null}]}');
  85. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000053, '/userfunction/save.authw', '保存用户权限数据', 'userId:long;\nfunctionAndWrite:List;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"has\":false,\"writee\":false,\"module\":null}]}');
  86. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000054, '/serverResume/data.auth', '获取游戏汇总数据', 'serverUid:int;\nstartTime:int;\nendTime:int;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"dateStr\":null,\"playerNum\":0,\"newPlayerNum\":0,\"loginPlayerNum\":0,\"loginNum\":0,\"oldLoginNum\":0,\"rechargeNum\":0,\"rechargePlayerNum\":0,\"rechargeForDiamond\":0,\"insertTime\":null,\"updateTime\":null}]}');
  87. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000055, '/gameCause/data.auth', '请求流水事件数据', 'openId:String;\nname:String;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"insertTime\":null,\"updateTime\":null}]}');
  88. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000056, '/gameCause/options.do', '流水事件下拉菜单数据', '', '{\"options\":[{\"value\":0,\"text\":null}]}');
  89. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000057, '/gameCause/refresh.auth', '更新流水事件数据', '', '');
  90. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2025-02-27 10:13:48', 100000058, '/playerMail/data.auth', '请求玩家邮件数据', 'channleId:long;\nplayerId:long;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"receiver\":0,\"template\":0,\"titleArgs\":[],\"contentArgs\":[],\"attachment\":null,\"read\":false,\"receive\":false,\"expireTime\":{\"date\":{\"year\":2025,\"month\":2,\"day\":27},\"time\":{\"hour\":10,\"minute\":13,\"second\":48,\"nano\":292000000}},\"gameCause\":0,\"gameCauseText\":null,\"fromPoolId\":0,\"channelId\":0}]}');
  91. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000059, '/playerMail/delete.authw', '删除玩家邮件数据', 'channelId:long;\nplayerId:long;\nmailId:long;\n', '');
  92. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000060, '/rechargeProductCfg/data.auth', '请求游戏充值商品配置数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"describe\":null,\"money\":0,\"insertTime\":null,\"updateTime\":null}]}');
  93. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000061, '/rechargeProductCfg/refresh.auth', '更新游戏充值商品配置数据', '', '');
  94. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000062, '/api/dbs', '请求游戏服的数据库配置', 'platformId:int;\nserverId:int;\ntype:String;\ntime:long;\nsign:String;\n', '[{\"id\":0,\"alias\":null,\"ipPort\":null,\"dbName\":null,\"user\":null,\"password\":null,\"minIdle\":0,\"maxActive\":0,\"maxWaitMillis\":0}]');
  95. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000063, '/guideDotData/data.auth', '引导打点数据', 'serverUid:int;\n', '{\"count\":0,\"data\":[{\"guideId\":0,\"guideName\":null,\"step\":0,\"num\":0,\"loseNum\":0,\"loseRate\":null}]}');
  96. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000064, '/giftCode/data.auth', '请求礼包码数据', 'configId:int;\ncode:String;\nplayerId:long;\nplayerName:String;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"code\":null,\"channelId\":0,\"type\":0,\"configId\":0,\"configName\":null,\"userId\":0,\"userName\":null,\"playerId\":0,\"playerName\":null,\"insertTime\":null,\"updateTime\":null}]}');
  97. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000065, '/api/canUseCode', '礼包码是否可用,给游戏服的接口', 'channelId:int;\ncode:String;\nplayerId:long;\nplayerName:String;\n', '\"\"');
  98. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000066, '/giftCode/save.authw', '新增礼包码数据', 'type:int;\ncode:String;\nconfigId:int;\nnum:int;\n', '');
  99. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000067, '/api/fushun/recharge', '提供给fushun的充值回调接口', ':String;\n:String;\n:String;\n:String;\n:String;\n:String;\n:String;\n:String;\n:String;\n:String;\n', '\"\"');
  100. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000068, '/api/fushun/login', '提供给游戏客户端验证fushun登录数据的接口', 'code:String;\n', '{\"code\":0,\"message\":null,\"data\":null}');
  101. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000069, '/modulemenu/data.auth', '请求模块菜单数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"systemId\":0,\"title\":null,\"sort\":0,\"icon\":null,\"routeName\":null,\"routePath\":null,\"component\":null,\"insertTime\":null,\"updateTime\":null}]}');
  102. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000070, '/modulemenu/update.authw', '更新模块菜单数据', 'id:long;\nsort:long;\nicon:String;\n', '{\"id\":0,\"systemId\":0,\"title\":null,\"sort\":0,\"icon\":null,\"routeName\":null,\"routePath\":null,\"component\":null,\"insertTime\":null,\"updateTime\":null}');
  103. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000071, '/gameServerMaintain/data.auth', '请求服务器维护数据', 'platformId:long;\n', '{\"count\":0,\"data\":[{\"serverId\":0,\"name\":null,\"maintain\":false,\"maintainResponse\":false}]}');
  104. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000072, '/gameServerMaintain/maintain.authw', '进行服务器维护', 'platformId:long;\nserverIds:List;\n', '{\"count\":0,\"data\":[{\"serverId\":0,\"name\":null,\"maintain\":false,\"maintainResponse\":false}]}');
  105. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000073, '/gameServerMaintain/resendMaintain.authw', '重新发送进行服务器维护', 'platformId:long;\nserverIds:List;\n', '{\"count\":0,\"data\":[{\"serverId\":0,\"name\":null,\"maintain\":false,\"maintainResponse\":false}]}');
  106. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000074, '/gameServerMaintain/endMaintain.authw', '结束服务器维护', 'platformId:long;\nserverIds:List;\n', '{\"count\":0,\"data\":[{\"serverId\":0,\"name\":null,\"maintain\":false,\"maintainResponse\":false}]}');
  107. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000075, '/gameServerMaintain/resendEndMaintain.authw', '重新发送结束服务器维护', 'platformId:long;\nserverIds:List;\n', '{\"count\":0,\"data\":[{\"serverId\":0,\"name\":null,\"maintain\":false,\"maintainResponse\":false}]}');
  108. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000076, '/bulletin/data.auth', '请求公告数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"title\":null,\"content\":null,\"insertTime\":null,\"updateTime\":null}]}');
  109. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000077, '/bulletin/options.do', '请求公告下拉菜单数据', '', '{\"options\":[{\"value\":0,\"text\":null}]}');
  110. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000078, '/bulletin/delete.authw', '删除渠道数据,并删除与之关联的服务器关系数据', 'id:long;\n', '');
  111. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000079, '/bulletin/save.authw', '保存公告数据,数据ID小于等于0时插入数据,大于0时更新对应数据', 'id:long;\ntitle:String;\ncontent:String;\n', '{\"id\":0,\"title\":null,\"content\":null,\"insertTime\":null,\"updateTime\":null}');
  112. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000080, '/user/data.auth', '请求用户列表数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"password\":null,\"level\":0,\"superUser\":false,\"upUserId\":0,\"phone\":null,\"mailAddress\":null,\"usable\":false,\"canReadSensitive\":false,\"insertTime\":null,\"updateTime\":null}]}');
  113. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000081, '/user/delete.authw', '删除用户数据', 'id:long;\nname:String;\npassword:String;\nusable:boolean;\nsuperUser:boolean;\nphone:String;\nmailAddress:String;\ncanReadSensitive:boolean;\n', '');
  114. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000082, '/user/save.authw', '保存用户数据,数据ID小于等于0时新增,大于0时更新', 'id:long;\nname:String;\npassword:String;\nusable:boolean;\nsuperUser:boolean;\nphone:String;\nmailAddress:String;\ncanReadSensitive:boolean;\n', '{\"id\":0,\"name\":null,\"password\":null,\"level\":0,\"superUser\":false,\"upUserId\":0,\"phone\":null,\"mailAddress\":null,\"usable\":false,\"canReadSensitive\":false,\"insertTime\":null,\"updateTime\":null}');
  115. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000083, '/recharge/data.auth', '请求充值订单数据', 'playerId:long;\nnick:String;\nopenId:String;\nsdkOrderId:String;\nstartTime:int;\nendTime:int;\nstatus:int;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"platformId\":0,\"channelId\":0,\"serverId\":0,\"playerId\":0,\"nick\":null,\"openId\":null,\"level\":0,\"sdkOrderId\":null,\"gameOrderId\":null,\"money\":0,\"productId\":0,\"productName\":null,\"give\":0,\"remark\":null,\"remarkIdx\":0,\"test\":0,\"allCheck\":false,\"sign\":null,\"localSign\":null,\"extraSign\":null,\"localExtraSign\":null,\"remoteIp\":null,\"callbackData\":null,\"gameResponse\":null,\"insertTime\":null,\"updateTime\":null}]}');
  116. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000084, '/recharge/manual.authw', '人工触发订单补发发货', 'rechargeId:long;\n', '');
  117. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000085, '/taskDotData/data.auth', '任务打点数据', 'serverUid:int;\n', '{\"count\":0,\"data\":[{\"taskId\":0,\"taskName\":null,\"startNum\":0,\"finishNum\":0,\"finishRate\":0.0}]}');
  118. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000086, '/systemmenu/data.auth', '请求系统菜单数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"title\":null,\"sort\":0,\"icon\":null,\"routeName\":null,\"routePath\":null,\"component\":null,\"insertTime\":null,\"updateTime\":null}]}');
  119. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000087, '/systemmenu/update.authw', '更新系统菜单数据', 'id:long;\nsort:long;\nicon:String;\n', '{\"id\":0,\"title\":null,\"sort\":0,\"icon\":null,\"routeName\":null,\"routePath\":null,\"component\":null,\"insertTime\":null,\"updateTime\":null}');
  120. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000088, '/fixCodeResult/data.auth', '请求热更代码结果数据', 'id:long;\n', '{\"count\":0,\"data\":[{\"id\":0,\"fixId\":0,\"serverUid\":0,\"serverId\":0,\"name\":null,\"status\":0,\"code\":0,\"message\":null,\"insertTime\":null,\"updateTime\":null}]}');
  121. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000089, '/fixCode/data.auth', '请求热更代码记录', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"serverUids\":[],\"fileNames\":[],\"userId\":0,\"userName\":null,\"fixTime\":null,\"insertTime\":null,\"updateTime\":null}]}');
  122. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000090, '/fixCodeResult/patch.auth', '执行补丁', 'serverUids:Set;\nparam:String;\n', '');
  123. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000091, '/gameServer/data.auth', '请求服务器数据', 'platformId:long;\nserverId:int;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"platformId\":0,\"platformName\":null,\"serverId\":0,\"name\":null,\"socketType\":null,\"externalIp\":null,\"internalIp\":null,\"tcpPort\":0,\"httpPort\":0,\"dbIp\":null,\"dbPort\":null,\"dbUser\":null,\"dbPwd\":null,\"dbGameName\":null,\"dbLogName\":null,\"hide\":false,\"status\":0,\"recommend\":false,\"openTime\":null,\"realOpenTime\":null,\"sendOpenStatus\":0,\"opening\":false,\"serverType\":0,\"running\":false,\"heartTime\":null,\"registerNum\":0,\"createNum\":0,\"onlineNum\":0,\"battleNum\":0,\"currBattleNum\":0,\"maxMemory\":null,\"freeMemory\":null,\"totalMemory\":null,\"leftMemory\":null,\"usedMemory\":null}]}');
  124. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000092, '/gameServer/options.do', '服务器下拉菜单数据', '', '{\"options\":[{\"value\":0,\"text\":null}]}');
  125. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000093, '/gameServer/save.authw', '保存服务器数据,ID小于等于0时新增,大于0时修改', 'id:long;\nplatformId:long;\nplatformName:String;\nserverId:int;\nname:String;\nexternalIp:String;\ninternalIp:String;\ntcpPort:int;\nhttpPort:int;\ndbIp:String;\ndbPort:String;\ndbUser:String;\ndbPwd:String;\ndbGameName:String;\ndbLogName:String;\nstatus:int;\nrecommend:boolean;\nserverType:int;\nsocketType:String;\nhide:boolean;\n', '{\"id\":0,\"platformId\":0,\"platformName\":null,\"serverId\":0,\"name\":null,\"socketType\":null,\"externalIp\":null,\"internalIp\":null,\"tcpPort\":0,\"httpPort\":0,\"dbIp\":null,\"dbPort\":null,\"dbUser\":null,\"dbPwd\":null,\"dbGameName\":null,\"dbLogName\":null,\"hide\":false,\"status\":0,\"recommend\":false,\"openTime\":null,\"realOpenTime\":null,\"sendOpenStatus\":0,\"opening\":false,\"serverType\":0,\"running\":false,\"heartTime\":null,\"registerNum\":0,\"createNum\":0,\"onlineNum\":0,\"battleNum\":0,\"currBattleNum\":0,\"maxMemory\":null,\"freeMemory\":null,\"totalMemory\":null,\"leftMemory\":null,\"usedMemory\":null}');
  126. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000094, '/gameServer/optionsInCurrChannel.do', '根据当前渠道获取服务器下拉菜单数据', '', '{\"options\":[{\"value\":0,\"text\":null}]}');
  127. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000095, '/api/versionInfo', '请求客户端版本信息,给游戏客户端请求用的', 'channelId:long;\nversionId:int;\n', '{\"remoteUrl\":null,\"resourceVersion\":null,\"pcResourceVersion\":null}');
  128. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000096, '/api/serversList', '请求服务器列表,给游戏客户端请求用的', 'channelId:long;\nopenId:String;\n:Integer;\n', '{\"title\":null,\"content\":null,\"players\":[{\"serverId\":0,\"nick\":null,\"level\":0,\"head\":null}],\"regions\":[{\"id\":0,\"name\":null}],\"servers\":[{\"id\":0,\"name\":null,\"ip\":null,\"port\":0,\"status\":0,\"socketType\":null}]}');
  129. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000097, '/api/serverInRegion', '请求游戏大区下的服务器列表,给游戏客户端请求用的', 'regionId:long;\n', '[{\"id\":0,\"name\":null,\"ip\":null,\"port\":0,\"status\":0,\"socketType\":null}]');
  130. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000098, '/api/heartBeat', '游戏服务器上报心跳', 'platformId:int;\nserverId:int;\nplayerNum:int;\nonlineNum:int;\nbattleNum:int;\ncurrBattleNum:int;\nmaxMemory:String;\nfreeMemory:String;\ntotalMemory:String;\nleftMemory:String;\nusedMemory:String;\nrunning:boolean;\n', '');
  131. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000099, '/godFinger/data.auth', '请求金手指名单数据', 'openId:String;\nname:String;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"channelId\":0,\"channelName\":null,\"serverUid\":0,\"serverId\":0,\"serverName\":null,\"playerId\":0,\"openId\":null,\"nick\":null,\"remark\":null,\"money\":0,\"userId\":0,\"userName\":null,\"insertTime\":null,\"updateTime\":null}]}');
  132. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000100, '/godFinger/delete.authw', '删除金手指名单数据', 'id:long;\n', '');
  133. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000101, '/godFinger/save.authw', '保存金手指名单数据,数据ID小于等于0时插入数据,大于0时更新对应数据', 'id:long;\nplayerId:long;\nremark:String;\nmoney:long;\n', '{\"id\":0,\"channelId\":0,\"channelName\":null,\"serverUid\":0,\"serverId\":0,\"serverName\":null,\"playerId\":0,\"openId\":null,\"nick\":null,\"remark\":null,\"money\":0,\"userId\":0,\"userName\":null,\"insertTime\":null,\"updateTime\":null}');
  134. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000102, '/userChannel/data.auth', '请求用户与渠道关系数据', 'userName:String;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"phone\":null,\"mailAddress\":null}]}');
  135. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000103, '/userChannel/options.auth', '获取可授权的渠道数据', 'userId:long;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"has\":false}]}');
  136. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000104, '/userChannel/save.authw', '保存用户与渠道关系数据', 'userId:long;\nchannel:List;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"has\":false}]}');
  137. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000105, '/consume/data.auth', '获取游戏消费统计数据', 'serverUid:int;\nstartTime:int;\nendTime:int;\nresourceType:int;\nconsumeType:int;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"index\":0,\"gameCause\":0,\"gameCauseTxt\":null,\"resourceType\":null,\"consumeType\":0,\"playerNum\":0,\"countNum\":0,\"total\":0,\"avg\":0.0,\"weight\":0.0}]}');
  138. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000106, '/functionmenu/data.auth', '请求功能菜单数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"moduleId\":0,\"title\":null,\"sort\":0,\"icon\":null,\"routeName\":null,\"routePath\":null,\"authClazz\":null,\"insertTime\":null,\"updateTime\":null}]}');
  139. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000107, '/functionmenu/update.authw', '更新功能菜单数据', 'id:long;\nsort:long;\nicon:String;\n', '{\"id\":0,\"moduleId\":0,\"title\":null,\"sort\":0,\"icon\":null,\"routeName\":null,\"routePath\":null,\"authClazz\":null,\"insertTime\":null,\"updateTime\":null}');
  140. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000108, '/rechargeProductCount/data.auth', '请求充值商品项目统计数据', 'startTime:int;\nendTime:int;\nserverUids:List;\n', '{\"count\":0,\"data\":[{\"productId\":0,\"productName\":null,\"playerCount\":0,\"buyCount\":0,\"totalPay\":0,\"rate\":0}]}');
  141. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2025-02-27 10:13:48', 100000109, '/userlog/data.auth', '请求用户操作日志', 'userName:String;\nstartTime:int;\nendTime:int;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"userId\":0,\"userName\":null,\"requestUrl\":null,\"param\":null,\"time\":{\"date\":{\"year\":2025,\"month\":2,\"day\":27},\"time\":{\"hour\":10,\"minute\":13,\"second\":48,\"nano\":305000000}},\"insertTime\":null,\"updateTime\":null}]}');
  142. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000110, '/playerRemain/data.auth', '请求玩家留存数据', 'serverUid:int;\nstartTime:int;\nendTime:int;\n', '{\"count\":0,\"data\":[{\"serverUid\":0,\"serverId\":0,\"serverName\":null,\"bornDate\":null,\"dayBase\":0,\"day0\":0,\"day1\":0,\"day2\":0,\"day3\":0,\"day4\":0,\"day5\":0,\"day6\":0,\"day7\":0,\"day8\":0,\"day9\":0,\"day10\":0,\"day11\":0,\"day12\":0,\"day13\":0,\"day14\":0,\"day30\":0,\"day60\":0,\"day90\":0}]}');
  143. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000111, '/playerRemain/manual.auth', '手动触发昨天留存数据统计', '', '');
  144. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000112, '/clientLog/data.auth', '请求客户端日志数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"level\":null,\"title\":null,\"content\":null,\"playerId\":null,\"name\":null,\"data\":null,\"send\":false,\"insertTime\":null,\"updateTime\":null}]}');
  145. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000113, '/api/clientLog', '记录客户端日志,给游戏客户端请求用的', 'level:String;\ntitle:String;\ncontent:String;\nplayerId:String;\nname:String;\ndata:String;\n', '');
  146. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000114, '/playerTimeLog/data.auth', '获取注册分时统计数据', 'time:int;\nserverUids:List;\n', '{\"count\":0,\"data\":[{\"timePeriod\":null,\"minOnline\":0,\"maxOnline\":0,\"createNum\":0,\"loginNum\":0}]}');
  147. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000115, '/gamePlatform/data.auth', '请求平台数据', 'page:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"userId\":0,\"userName\":null,\"insertTime\":null,\"updateTime\":null}]}');
  148. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000116, '/gamePlatform/options.do', '请求平台下拉菜单数据', '', '{\"options\":[{\"value\":0,\"text\":null}]}');
  149. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000117, '/gamePlatform/save.authw', '保存平台数据,数据ID小于等于0时插入数据,大于0时更新对应数据', 'id:long;\nname:String;\n', '{\"id\":0,\"name\":null,\"userId\":0,\"userName\":null,\"insertTime\":null,\"updateTime\":null}');
  150. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000118, '/api/yile/recharge', '提供给益乐的充值回调接口', 'game_id:String;\nuid:String;\namount:String;\norder_id:String;\ncp_order_id:String;\nrole_id:String;\nserver_id:String;\next:String;\ntime:String;\nsign:String;\n', '\"\"');
  151. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000119, '/api/yile/checkLogin', '提供给游戏客户端验证益乐登录数据的接口', 'uid:String;\ntoken:String;\nloginTime:String;\n', '{\"code\":0,\"message\":null,\"data\":null}');
  152. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000120, '/login.gate', '请求登录系统', 'username:String;\npassword:String;\n', '{\"token\":null}');
  153. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000121, '/menu.do', '获取用户可用菜单', '', '{\"username\":null,\"systemMenus\":[{\"children\":[],\"name\":null,\"path\":null,\"meta\":null,\"component\":null}]}');
  154. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000122, '/changePasssword.do', '修改密码', 'oldPassword:String;\nnewPassword:String;\nconfirmPassword:String;\n', '');
  155. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000123, '/playerCurrOnline/forbid.auth', '请求封禁玩家', 'playerId:long;\nforbidEndTime:long;\n', '');
  156. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000124, '/playerCurrOnline/data.auth', '请求当前在线玩家', 'serverUid:long;\n', '{\"count\":0,\"data\":[{\"id\":0,\"nick\":null,\"level\":0,\"diamond\":0,\"gold\":0,\"lastLoginTime\":null,\"dailyOnline\":0}]}');
  157. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000125, '/playerCurrOnline/forcedOffLine.auth', '踢玩家下线', 'playerId:long;\n', '');
  158. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000126, '/gameChannelServer/data.auth', '请求渠道与服务器关系数据', 'channelId:long;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"channelId\":0,\"channelName\":null,\"serverUid\":0,\"serverId\":0,\"serverName\":null,\"regionId\":0,\"regionName\":null,\"userId\":0,\"userName\":null,\"recommend\":false,\"insertTime\":null,\"updateTime\":null}]}');
  159. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000127, '/gameChannelServer/saveToRegion.authw', '编辑服务器归属大区', 'channelId:long;\nserverUid:long;\nregionId:long;\n', '{\"id\":0,\"channelId\":0,\"channelName\":null,\"serverUid\":0,\"serverId\":0,\"serverName\":null,\"regionId\":0,\"regionName\":null,\"userId\":0,\"userName\":null,\"recommend\":false,\"insertTime\":null,\"updateTime\":null}');
  160. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000128, '/gameChannelServer/currRelation.auth', '请求渠道下当前的服务器', 'channelId:long;\n', '{\"datas\":[{\"id\":0,\"text\":null,\"select\":false}]}');
  161. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000129, '/gameChannelServer/save.authw', '保存渠道与服务器关系数据', 'channelId:long;\nserverUids:List;\n', '');
  162. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000130, '/recruitDotData/data.auth', '招募打点数据', 'serverUid:int;\nstartTime:int;\nendTime:int;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"dateStr\":null,\"num0to10\":0,\"num11to20\":0,\"num21toMax\":0,\"joinNum\":0,\"createNum\":0}]}');
  163. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000131, '/giftCodeCfg/data.auth', '请求游戏兑换码礼包配置数据', 'openId:String;\nname:String;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"name\":null,\"insertTime\":null,\"updateTime\":null}]}');
  164. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000132, '/giftCodeCfg/options.do', '游戏兑换码礼包配置下拉菜单数据', '', '{\"options\":[{\"value\":0,\"text\":null}]}');
  165. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000133, '/giftCodeCfg/refresh.auth', '更新游戏兑换码礼包配置数据', '', '');
  166. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000134, '/forbidList/send.auth', '发送封禁账号到渠道下各游戏服', '', '');
  167. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000135, '/forbidList/data.auth', '请求封禁账号数据', 'openId:String;\npage:int;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"id\":0,\"channelId\":0,\"openId\":null,\"userId\":0,\"userName\":null,\"insertTime\":null,\"updateTime\":null}]}');
  168. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000136, '/forbidList/add.authw', '添加封禁账号', 'openId:String;\n', '{\"id\":0,\"channelId\":0,\"openId\":null,\"userId\":0,\"userName\":null,\"insertTime\":null,\"updateTime\":null}');
  169. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000137, '/forbidList/delete.authw', '删除封禁账号', 'id:long;\n', '');
  170. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000138, '/playerOnlineLog/data.auth', '获取在线人数数据', 'time:int;\nserverUids:List;\n', '{\"count\":0,\"data\":[{\"period\":0,\"periodText\":null,\"onlineNum\":0,\"newOnlineNum\":0}]}');
  171. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000139, '/fogDotData/data.auth', '引导打点数据', 'serverUid:int;\n', '{\"count\":0,\"data\":[{\"fogId\":0,\"minFighting\":0,\"num\":0,\"canNum\":0,\"rate\":null}]}');
  172. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000140, '/api/wabo/recharge', '提供给wabo的充值回调接口', ':String;\n:String;\n:String;\nev:String;\ngameId:String;\npn:String;\nsystem:String;\ngameAccountId:String;\ngameOrderId:String;\ncpOrderId:String;\nextraInfo:String;\nitemId:String;\nitemDoublePrice:String;\nitemCurrency:String;\ntransactionId:String;\npayTime:String;\npayTimeStr:String;\ntimestamp:String;\n', '\"\"');
  173. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000141, '/api/wabo/checkLogin', '提供给游戏客户端验证益乐登录数据的接口', 'token:String;\n', '{\"code\":0,\"message\":null,\"data\":null}');
  174. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000142, '/rechargeRank/data.auth', '请求充值排名数据', 'startTime:int;\nendTime:int;\nserverUids:List;\nlimit:int;\n', '{\"count\":0,\"data\":[{\"channelId\":0,\"channelName\":null,\"serverUid\":0,\"serverId\":0,\"serverName\":null,\"playerId\":0,\"nick\":null,\"level\":0,\"fighting\":0,\"diamond\":0,\"gold\":0,\"money\":0,\"lastLoginTime\":null,\"bornTime\":null,\"lastRechargeTime\":null}]}');
  175. INSERT INTO `api_doc` (`insert_time`, `update_time`, `id`, `href_url`, `comment`, `param_form`, `return_form`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 100000143, '/bossDotData/data.auth', '引导打点数据', 'serverUid:int;\n', '{\"count\":0,\"data\":[{\"bossId\":0,\"bossName\":null,\"level\":0,\"canChallengeNum\":0,\"challengeNum\":0,\"playerNum\":0,\"killNum\":0,\"minFighting\":0,\"killRate\":null}]}');
  176. COMMIT;
  177. -- ----------------------------
  178. -- Table structure for bulletin
  179. -- ----------------------------
  180. DROP TABLE IF EXISTS `bulletin`;
  181. CREATE TABLE `bulletin` (
  182. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  183. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  184. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '公告ID',
  185. `title` varchar(255) DEFAULT '' COMMENT '公告标题',
  186. `content` text COMMENT '公告内容',
  187. PRIMARY KEY (`id`)
  188. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='游戏公告表';
  189. -- ----------------------------
  190. -- Records of bulletin
  191. -- ----------------------------
  192. BEGIN;
  193. INSERT INTO `bulletin` (`insert_time`, `update_time`, `id`, `title`, `content`) VALUES ('2024-11-22 10:14:31', '2024-11-22 11:09:55', 2, '测试公告', '测试公告1\r\n测试公告1\r\n测试公告1\r\n测试公告1');
  194. COMMIT;
  195. -- ----------------------------
  196. -- Table structure for client_log
  197. -- ----------------------------
  198. DROP TABLE IF EXISTS `client_log`;
  199. CREATE TABLE `client_log` (
  200. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  201. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  202. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '日志ID',
  203. `level` varchar(255) DEFAULT '' COMMENT '日志级别',
  204. `title` varchar(255) DEFAULT '' COMMENT '标题、类别',
  205. `content` text COMMENT '日志信息',
  206. `player_id` varchar(255) DEFAULT '' COMMENT '玩家ID',
  207. `name` varchar(255) DEFAULT '' COMMENT '玩家名称',
  208. `data` text COMMENT '日志内容',
  209. `send` char(5) DEFAULT 'false' COMMENT '是否已发送给管理员',
  210. PRIMARY KEY (`id`)
  211. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COMMENT='客户端日志';
  212. -- ----------------------------
  213. -- Records of client_log
  214. -- ----------------------------
  215. BEGIN;
  216. INSERT INTO `client_log` (`insert_time`, `update_time`, `id`, `level`, `title`, `content`, `player_id`, `name`, `data`, `send`) VALUES ('2024-11-21 19:57:56', '2024-11-21 19:57:56', 2, 'error', '报错', '{\"message\":\"Uncaught TypeError: Cannot read properties of undefined (reading \'0\')\",\"url\":\"http://localhost:7779/\",\"line\":303,\"column\":47,\"errorObj\":{}}', 'undefined', 'undefined', '{message:Cannot read properties of undefined (reading \'0\'),stack:TypeError: Cannot read properties of undefined (reading \'0\')\n at Loading.updateShowServer (eval at <anonymous> (http://localhost:7779/preview-scripts/__quick_compile__.js:238:32), <anonymous>:303:47)\n at Loading.onResponseServerList (eval at <anonymous> (http://localhost:7779/preview-scripts/__quick_compile__.js:238:32), <anonymous>:207:14)\n at xhr.onreadystatechange (eval at <anonymous> (http://localhost:7779/preview-scripts/__quick_compile__.js:238:32), <anonymous>:174:23),channelId:undefined}', 'false');
  217. INSERT INTO `client_log` (`insert_time`, `update_time`, `id`, `level`, `title`, `content`, `player_id`, `name`, `data`, `send`) VALUES ('2024-11-21 19:58:03', '2024-11-21 19:58:03', 3, 'error', '报错', '{\"message\":\"Uncaught TypeError: Cannot read properties of undefined (reading \'0\')\",\"url\":\"\",\"line\":303,\"column\":47,\"errorObj\":{}}', 'undefined', 'undefined', '{message:Cannot read properties of undefined (reading \'0\'),stack:TypeError: Cannot read properties of undefined (reading \'0\')\n at Loading.updateShowServer (eval at <anonymous> (http://localhost:7779/preview-scripts/__quick_compile__.js:238:32), <anonymous>:303:47)\n at Loading.onResponseServerList (eval at <anonymous> (http://localhost:7779/preview-scripts/__quick_compile__.js:238:32), <anonymous>:207:14)\n at xhr.onreadystatechange (eval at <anonymous> (http://localhost:7779/preview-scripts/__quick_compile__.js:238:32), <anonymous>:174:23)\n at XMLHttpRequest.s (http://localhost:7779/app/node_modules/vconsole/dist/vconsole.min.js:11:27891),channelId:undefined}', 'false');
  218. INSERT INTO `client_log` (`insert_time`, `update_time`, `id`, `level`, `title`, `content`, `player_id`, `name`, `data`, `send`) VALUES ('2024-11-21 19:58:26', '2024-11-21 19:58:26', 4, 'error', '报错', '{\"message\":\"Uncaught TypeError: Cannot read properties of undefined (reading \'0\')\",\"url\":\"\",\"line\":303,\"column\":47,\"errorObj\":{}}', 'undefined', 'undefined', '{message:Cannot read properties of undefined (reading \'0\'),stack:TypeError: Cannot read properties of undefined (reading \'0\')\n at Loading.updateShowServer (eval at <anonymous> (http://localhost:7779/preview-scripts/__quick_compile__.js:238:32), <anonymous>:303:47)\n at Loading.onResponseServerList (eval at <anonymous> (http://localhost:7779/preview-scripts/__quick_compile__.js:238:32), <anonymous>:207:14)\n at xhr.onreadystatechange (eval at <anonymous> (http://localhost:7779/preview-scripts/__quick_compile__.js:238:32), <anonymous>:174:23)\n at XMLHttpRequest.s (http://localhost:7779/app/node_modules/vconsole/dist/vconsole.min.js:11:27891),channelId:undefined}', 'false');
  219. COMMIT;
  220. -- ----------------------------
  221. -- Table structure for client_version
  222. -- ----------------------------
  223. DROP TABLE IF EXISTS `client_version`;
  224. CREATE TABLE `client_version` (
  225. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  226. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  227. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  228. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  229. `channel_name` varchar(255) DEFAULT '' COMMENT '渠道名字',
  230. `version_code` int(11) DEFAULT '0' COMMENT '版本编号',
  231. `server_type` int(11) DEFAULT '0' COMMENT '服务器类型,1测试,2审核,3正式',
  232. `remote_url` varchar(255) DEFAULT '' COMMENT '远程地址',
  233. `resource_version` varchar(255) DEFAULT '' COMMENT '客户端资源版本号',
  234. `remark` varchar(255) DEFAULT '' COMMENT '备注',
  235. `pc_resource_version` varchar(255) DEFAULT '' COMMENT 'PC客户端资源版本号',
  236. `quick_url` varchar(255) DEFAULT '' COMMENT '快速通道地址',
  237. PRIMARY KEY (`id`),
  238. UNIQUE KEY `channel_version` (`channel_id`,`version_code`) USING BTREE
  239. ) ENGINE=InnoDB AUTO_INCREMENT=100000003 DEFAULT CHARSET=utf8mb4 COMMENT='客户端版本控制';
  240. -- ----------------------------
  241. -- Records of client_version
  242. -- ----------------------------
  243. BEGIN;
  244. INSERT INTO `client_version` (`insert_time`, `update_time`, `id`, `channel_id`, `channel_name`, `version_code`, `server_type`, `remote_url`, `resource_version`, `remark`, `pc_resource_version`, `quick_url`) VALUES ('2024-11-22 11:09:14', '2024-11-22 11:09:14', 100000002, 2, '测试渠道', 10004, 1, NULL, NULL, NULL, NULL, NULL);
  245. COMMIT;
  246. -- ----------------------------
  247. -- Table structure for dot_data_login_statistic
  248. -- ----------------------------
  249. DROP TABLE IF EXISTS `dot_data_login_statistic`;
  250. CREATE TABLE `dot_data_login_statistic` (
  251. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  252. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  253. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  254. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  255. `date_str` varchar(255) DEFAULT '' COMMENT '日期字符串,yyyyMMdd',
  256. `req_res_url_begin` int(11) DEFAULT '0' COMMENT '根据版本号请求资源路径',
  257. `req_res_url_sucess` int(11) DEFAULT '0' COMMENT '根据版本号请求资源路径成功',
  258. `req_res_url_fail` int(11) DEFAULT '0' COMMENT '根据版本号请求资源路径成功',
  259. `sdk_login_begin` int(11) DEFAULT '0' COMMENT 'SDK开始登陆',
  260. `sdk_login_sucess` int(11) DEFAULT '0' COMMENT 'SDK的登录成功',
  261. `sdk_login_fail` int(11) DEFAULT '0' COMMENT 'SDK的登录失败',
  262. `req_server_verify_begin` int(11) DEFAULT '0' COMMENT '请求服务器账号验证',
  263. `req_server_verify_sucess` int(11) DEFAULT '0' COMMENT '请求服务器账号验证成功',
  264. `req_server_verify_fail` int(11) DEFAULT '0' COMMENT '请求服务器账号验证失败',
  265. `req_server_list_begin` int(11) DEFAULT '0' COMMENT '请求服务器列表',
  266. `req_server_list_sucess` int(11) DEFAULT '0' COMMENT '请求服务器列表成功',
  267. `req_server_list_fail` int(11) DEFAULT '0' COMMENT '请求服务器列表失败',
  268. `start_game` int(11) DEFAULT '0' COMMENT '点击开始游戏',
  269. `req_socket_connect_sucess` int(11) DEFAULT '0' COMMENT '向服务器socket连接成功',
  270. `req_socket_login_begin` int(11) DEFAULT '0' COMMENT '向服务器发送登陆请求协议',
  271. `req_socket_login_sucess` int(11) DEFAULT '0' COMMENT '向服务器发送登陆请求协议成功',
  272. `req_socket_login_fail` int(11) DEFAULT '0' COMMENT '向服务器发送登陆请求协议失败',
  273. `create_succ` int(11) DEFAULT '0' COMMENT '创号成功',
  274. `req_server_push_data_end` int(11) DEFAULT '0' COMMENT '服务器推送数据结束',
  275. `in_game` int(11) DEFAULT '0' COMMENT '进入游戏',
  276. PRIMARY KEY (`id`),
  277. UNIQUE KEY `channelid_datastr` (`channel_id`,`date_str`) USING BTREE
  278. ) ENGINE=InnoDB AUTO_INCREMENT=100000003 DEFAULT CHARSET=utf8mb4 COMMENT='登录打点数据统计';
  279. -- ----------------------------
  280. -- Records of dot_data_login_statistic
  281. -- ----------------------------
  282. BEGIN;
  283. INSERT INTO `dot_data_login_statistic` (`insert_time`, `update_time`, `id`, `channel_id`, `date_str`, `req_res_url_begin`, `req_res_url_sucess`, `req_res_url_fail`, `sdk_login_begin`, `sdk_login_sucess`, `sdk_login_fail`, `req_server_verify_begin`, `req_server_verify_sucess`, `req_server_verify_fail`, `req_server_list_begin`, `req_server_list_sucess`, `req_server_list_fail`, `start_game`, `req_socket_connect_sucess`, `req_socket_login_begin`, `req_socket_login_sucess`, `req_socket_login_fail`, `create_succ`, `req_server_push_data_end`, `in_game`) VALUES ('2024-11-22 11:17:37', '2024-11-22 16:53:45', 100000001, 1, '20241122', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0);
  284. INSERT INTO `dot_data_login_statistic` (`insert_time`, `update_time`, `id`, `channel_id`, `date_str`, `req_res_url_begin`, `req_res_url_sucess`, `req_res_url_fail`, `sdk_login_begin`, `sdk_login_sucess`, `sdk_login_fail`, `req_server_verify_begin`, `req_server_verify_sucess`, `req_server_verify_fail`, `req_server_list_begin`, `req_server_list_sucess`, `req_server_list_fail`, `start_game`, `req_socket_connect_sucess`, `req_socket_login_begin`, `req_socket_login_sucess`, `req_socket_login_fail`, `create_succ`, `req_server_push_data_end`, `in_game`) VALUES ('2024-11-22 13:14:08', '2024-11-22 16:53:45', 100000002, 2, '20241122', 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1);
  285. COMMIT;
  286. -- ----------------------------
  287. -- Table structure for dot_data_task_statistic
  288. -- ----------------------------
  289. DROP TABLE IF EXISTS `dot_data_task_statistic`;
  290. CREATE TABLE `dot_data_task_statistic` (
  291. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  292. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  293. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  294. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  295. `server_uid` bigint(20) DEFAULT '0' COMMENT '服务器ID',
  296. `task_id` int(11) DEFAULT '0' COMMENT '任务ID',
  297. `task_name` varchar(255) DEFAULT '' COMMENT '任务名称',
  298. `start_num` int(11) DEFAULT '0' COMMENT '接取人数',
  299. `finish_num` int(11) DEFAULT '0' COMMENT '完成人数',
  300. PRIMARY KEY (`id`),
  301. KEY `channel_id` (`channel_id`) USING BTREE
  302. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='任务打点数据统计';
  303. -- ----------------------------
  304. -- Records of dot_data_task_statistic
  305. -- ----------------------------
  306. BEGIN;
  307. COMMIT;
  308. -- ----------------------------
  309. -- Table structure for fix_code
  310. -- ----------------------------
  311. DROP TABLE IF EXISTS `fix_code`;
  312. CREATE TABLE `fix_code` (
  313. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  314. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  315. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  316. `server_uids` varchar(255) DEFAULT '' COMMENT '热更的服务器唯一ID集合',
  317. `file_names` text COMMENT '配置文件相对路径',
  318. `user_id` bigint(20) DEFAULT '0' COMMENT '操作员ID',
  319. `user_name` varchar(255) DEFAULT '' COMMENT '操作员名称',
  320. `fix_time` varchar(255) DEFAULT '' COMMENT '热更时间批号',
  321. PRIMARY KEY (`id`)
  322. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='热更代码记录表';
  323. -- ----------------------------
  324. -- Records of fix_code
  325. -- ----------------------------
  326. BEGIN;
  327. COMMIT;
  328. -- ----------------------------
  329. -- Table structure for fix_code_result
  330. -- ----------------------------
  331. DROP TABLE IF EXISTS `fix_code_result`;
  332. CREATE TABLE `fix_code_result` (
  333. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  334. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  335. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  336. `fix_id` bigint(20) DEFAULT '0' COMMENT '修正记录ID',
  337. `server_uid` int(11) DEFAULT '0' COMMENT '服务器唯一ID',
  338. `server_id` int(11) DEFAULT '0' COMMENT '服务器ID',
  339. `name` varchar(255) DEFAULT '' COMMENT '服务器名字',
  340. `status` int(11) DEFAULT '0' COMMENT '处理状态,0未处理,1成功,2失败',
  341. `code` int(11) DEFAULT '0' COMMENT '服务器响应码',
  342. `message` varchar(255) DEFAULT '' COMMENT '服务器响应消息',
  343. PRIMARY KEY (`id`)
  344. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='热更代码结果记录表';
  345. -- ----------------------------
  346. -- Records of fix_code_result
  347. -- ----------------------------
  348. BEGIN;
  349. COMMIT;
  350. -- ----------------------------
  351. -- Table structure for fix_design
  352. -- ----------------------------
  353. DROP TABLE IF EXISTS `fix_design`;
  354. CREATE TABLE `fix_design` (
  355. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  356. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  357. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  358. `server_uids` varchar(255) DEFAULT '' COMMENT '热更的服务器唯一ID集合',
  359. `file_names` text COMMENT '配置文件相对路径',
  360. `user_id` bigint(20) DEFAULT '0' COMMENT '操作员ID',
  361. `user_name` varchar(255) DEFAULT '' COMMENT '操作员名称',
  362. `fix_time` varchar(255) DEFAULT '' COMMENT '热更时间批号',
  363. PRIMARY KEY (`id`)
  364. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='热更配置记录表';
  365. -- ----------------------------
  366. -- Records of fix_design
  367. -- ----------------------------
  368. BEGIN;
  369. COMMIT;
  370. -- ----------------------------
  371. -- Table structure for fix_design_result
  372. -- ----------------------------
  373. DROP TABLE IF EXISTS `fix_design_result`;
  374. CREATE TABLE `fix_design_result` (
  375. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  376. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  377. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  378. `fix_id` bigint(20) DEFAULT '0' COMMENT '修正记录ID',
  379. `server_uid` int(11) DEFAULT '0' COMMENT '服务器唯一ID',
  380. `server_id` int(11) DEFAULT '0' COMMENT '服务器ID',
  381. `name` varchar(255) DEFAULT '' COMMENT '服务器名字',
  382. `status` int(11) DEFAULT '0' COMMENT '处理状态,0未处理,1成功,2失败',
  383. `code` int(11) DEFAULT '0' COMMENT '服务器响应码',
  384. `message` varchar(255) DEFAULT '' COMMENT '服务器响应消息',
  385. PRIMARY KEY (`id`)
  386. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='热更配置结果记录表';
  387. -- ----------------------------
  388. -- Records of fix_design_result
  389. -- ----------------------------
  390. BEGIN;
  391. COMMIT;
  392. -- ----------------------------
  393. -- Table structure for forbid_list
  394. -- ----------------------------
  395. DROP TABLE IF EXISTS `forbid_list`;
  396. CREATE TABLE `forbid_list` (
  397. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  398. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  399. `id` bigint(20) NOT NULL COMMENT '唯一ID',
  400. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  401. `open_id` varchar(255) DEFAULT '' COMMENT '账户ID',
  402. `user_id` bigint(20) DEFAULT '0' COMMENT '操作人ID',
  403. `user_name` varchar(255) DEFAULT '' COMMENT '操作人名字',
  404. PRIMARY KEY (`id`),
  405. UNIQUE KEY `channelid_openid` (`channel_id`,`open_id`) USING BTREE
  406. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='封禁账号表';
  407. -- ----------------------------
  408. -- Records of forbid_list
  409. -- ----------------------------
  410. BEGIN;
  411. COMMIT;
  412. -- ----------------------------
  413. -- Table structure for fushun_setting
  414. -- ----------------------------
  415. DROP TABLE IF EXISTS `fushun_setting`;
  416. CREATE TABLE `fushun_setting` (
  417. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  418. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  419. `id` bigint(20) NOT NULL COMMENT '数据ID',
  420. `game_id` varchar(255) DEFAULT '' COMMENT '渠道参数游戏ID',
  421. `game_key` varchar(255) DEFAULT '' COMMENT '游戏密钥',
  422. `login_url` varchar(255) DEFAULT '' COMMENT '验证登录URL',
  423. PRIMARY KEY (`id`)
  424. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='福顺参数设置';
  425. -- ----------------------------
  426. -- Records of fushun_setting
  427. -- ----------------------------
  428. BEGIN;
  429. INSERT INTO `fushun_setting` (`insert_time`, `update_time`, `id`, `game_id`, `game_key`, `login_url`) VALUES ('2024-11-21 18:09:32', '2024-11-21 18:09:32', 1, '30128', 'da371d609efdf1bf9c7e9d8fff364af9', 'https://api.hnmaiji.com/server/code/');
  430. COMMIT;
  431. -- ----------------------------
  432. -- Table structure for game_cause
  433. -- ----------------------------
  434. DROP TABLE IF EXISTS `game_cause`;
  435. CREATE TABLE `game_cause` (
  436. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  437. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  438. `id` bigint(20) NOT NULL COMMENT '事件ID',
  439. `name` varchar(255) DEFAULT '' COMMENT '事件名',
  440. PRIMARY KEY (`id`)
  441. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='游戏流水事件表';
  442. -- ----------------------------
  443. -- Records of game_cause
  444. -- ----------------------------
  445. BEGIN;
  446. COMMIT;
  447. -- ----------------------------
  448. -- Table structure for game_channel
  449. -- ----------------------------
  450. DROP TABLE IF EXISTS `game_channel`;
  451. CREATE TABLE `game_channel` (
  452. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  453. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  454. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '渠道ID',
  455. `name` varchar(255) DEFAULT '' COMMENT '渠道名字',
  456. `platform_id` bigint(20) DEFAULT '0' COMMENT '归属平台ID',
  457. `platform_name` varchar(255) DEFAULT '' COMMENT '归属平台名称',
  458. `user_id` bigint(20) DEFAULT '0' COMMENT '操作员ID',
  459. `user_name` varchar(255) DEFAULT '' COMMENT '操作员名称',
  460. `bulletin_id` bigint(20) DEFAULT '0' COMMENT '公告ID',
  461. `program_version` varchar(255) DEFAULT '' COMMENT '客户端程序版本号',
  462. `resource_version` varchar(255) DEFAULT '' COMMENT '客户端资源版本号',
  463. PRIMARY KEY (`id`)
  464. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='游戏渠道表';
  465. -- ----------------------------
  466. -- Records of game_channel
  467. -- ----------------------------
  468. BEGIN;
  469. INSERT INTO `game_channel` (`insert_time`, `update_time`, `id`, `name`, `platform_id`, `platform_name`, `user_id`, `user_name`, `bulletin_id`, `program_version`, `resource_version`) VALUES ('2024-11-22 10:03:59', '2024-11-22 11:20:26', 2, '测试渠道', 1001, '测试平台', 1, 'zx', 2, '', '');
  470. COMMIT;
  471. -- ----------------------------
  472. -- Table structure for game_channel_server
  473. -- ----------------------------
  474. DROP TABLE IF EXISTS `game_channel_server`;
  475. CREATE TABLE `game_channel_server` (
  476. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  477. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  478. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '关系ID',
  479. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  480. `channel_name` varchar(255) DEFAULT '' COMMENT '渠道名字',
  481. `server_uid` int(11) DEFAULT '0' COMMENT '服务器唯一ID',
  482. `server_id` int(11) DEFAULT '0' COMMENT '服务器ID',
  483. `server_name` varchar(255) DEFAULT '' COMMENT '服务器名字',
  484. `region_id` int(11) DEFAULT '0' COMMENT '所属大区ID',
  485. `region_name` varchar(255) DEFAULT '' COMMENT '所属大区名称',
  486. `user_id` bigint(20) DEFAULT '0' COMMENT '操作员ID',
  487. `user_name` varchar(255) DEFAULT '' COMMENT '操作员名称',
  488. `recommend` char(5) DEFAULT 'false' COMMENT '是否为推荐服务器',
  489. PRIMARY KEY (`id`),
  490. UNIQUE KEY `channelid_serverid` (`channel_id`,`server_id`) USING BTREE,
  491. KEY `channelid` (`channel_id`) USING BTREE
  492. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='游戏渠道与服务器关系表';
  493. -- ----------------------------
  494. -- Records of game_channel_server
  495. -- ----------------------------
  496. BEGIN;
  497. INSERT INTO `game_channel_server` (`insert_time`, `update_time`, `id`, `channel_id`, `channel_name`, `server_uid`, `server_id`, `server_name`, `region_id`, `region_name`, `user_id`, `user_name`, `recommend`) VALUES ('2024-11-22 10:13:06', '2024-11-22 11:12:33', 2, 2, '测试渠道', 10001, 1, 'S1', 1, '测试大区1', 1, 'zx', 'true');
  498. COMMIT;
  499. -- ----------------------------
  500. -- Table structure for game_db
  501. -- ----------------------------
  502. DROP TABLE IF EXISTS `game_db`;
  503. CREATE TABLE `game_db` (
  504. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  505. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  506. `db_name` varchar(255) NOT NULL COMMENT '数据库名字,唯一ID',
  507. `platform_id` int(11) DEFAULT '0' COMMENT '平台ID',
  508. `server_id` int(11) DEFAULT '0' COMMENT '服务器ID',
  509. `type` varchar(255) DEFAULT '' COMMENT '服务器类型',
  510. `zone_id` int(11) DEFAULT '0' COMMENT '在服务器里面用的一个ID,基本是1',
  511. `alias` varchar(255) DEFAULT '' COMMENT '别名',
  512. `ip_port` varchar(255) DEFAULT '' COMMENT 'IP与端口,填内网IP与端口',
  513. `user` varchar(255) DEFAULT '' COMMENT '数据库用户',
  514. `password` varchar(255) DEFAULT '' COMMENT '数据库密码',
  515. `min_idle` int(11) DEFAULT '0' COMMENT '最少空闲连接数',
  516. `max_active` int(11) DEFAULT '0' COMMENT '最大活跃连接数',
  517. `max_wait_millis` int(11) DEFAULT '0' COMMENT '最大等级时间',
  518. PRIMARY KEY (`db_name`),
  519. UNIQUE KEY `db_name` (`db_name`) USING BTREE
  520. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='游戏数据库管理表';
  521. -- ----------------------------
  522. -- Records of game_db
  523. -- ----------------------------
  524. BEGIN;
  525. COMMIT;
  526. -- ----------------------------
  527. -- Table structure for game_platform
  528. -- ----------------------------
  529. DROP TABLE IF EXISTS `game_platform`;
  530. CREATE TABLE `game_platform` (
  531. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  532. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  533. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '平台ID',
  534. `name` varchar(255) DEFAULT '' COMMENT '平台名称',
  535. `user_id` bigint(20) DEFAULT '0' COMMENT '操作员ID',
  536. `user_name` varchar(255) DEFAULT '' COMMENT '操作员名称',
  537. PRIMARY KEY (`id`)
  538. ) ENGINE=InnoDB AUTO_INCREMENT=1002 DEFAULT CHARSET=utf8mb4 COMMENT='游戏平台表';
  539. -- ----------------------------
  540. -- Records of game_platform
  541. -- ----------------------------
  542. BEGIN;
  543. INSERT INTO `game_platform` (`insert_time`, `update_time`, `id`, `name`, `user_id`, `user_name`) VALUES ('2024-11-22 10:02:45', '2024-11-22 10:02:45', 1001, '测试平台', 1, 'zx');
  544. COMMIT;
  545. -- ----------------------------
  546. -- Table structure for game_region
  547. -- ----------------------------
  548. DROP TABLE IF EXISTS `game_region`;
  549. CREATE TABLE `game_region` (
  550. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  551. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  552. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据唯一ID',
  553. `region_id` int(11) DEFAULT '0' COMMENT '大区ID',
  554. `name` varchar(255) DEFAULT '' COMMENT '大区名称',
  555. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  556. `channel_name` varchar(255) DEFAULT '' COMMENT '渠道名字',
  557. `server_type` int(11) DEFAULT '0' COMMENT '服务器类型,1测试服,2审核服,3正式服',
  558. PRIMARY KEY (`id`),
  559. UNIQUE KEY `channelid_regionid` (`channel_id`,`region_id`) USING BTREE
  560. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='游戏大区表';
  561. -- ----------------------------
  562. -- Records of game_region
  563. -- ----------------------------
  564. BEGIN;
  565. INSERT INTO `game_region` (`insert_time`, `update_time`, `id`, `region_id`, `name`, `channel_id`, `channel_name`, `server_type`) VALUES ('2024-11-22 10:11:06', '2024-11-22 10:11:06', 2, 1, '测试大区1', 2, '测试渠道', 1);
  566. COMMIT;
  567. -- ----------------------------
  568. -- Table structure for game_server
  569. -- ----------------------------
  570. DROP TABLE IF EXISTS `game_server`;
  571. CREATE TABLE `game_server` (
  572. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  573. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  574. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '数据唯一ID',
  575. `platform_id` bigint(20) DEFAULT '0' COMMENT '归属平台ID',
  576. `platform_name` varchar(255) DEFAULT '' COMMENT '归属平台名称',
  577. `server_id` int(11) DEFAULT '0' COMMENT '服务器ID',
  578. `name` varchar(255) DEFAULT '' COMMENT '服务器名字',
  579. `server_type` int(11) DEFAULT '0' COMMENT '服务器类型,1测试服,2审核服,3正式服',
  580. `socket_type` varchar(255) DEFAULT '' COMMENT 'socket连接方式',
  581. `external_ip` varchar(255) DEFAULT '' COMMENT '外网IP',
  582. `internal_ip` varchar(255) DEFAULT '' COMMENT '内网IP',
  583. `tcp_port` int(11) DEFAULT '0' COMMENT 'tcp/ws端口',
  584. `http_port` int(11) DEFAULT '0' COMMENT 'http端口',
  585. `db_game_name` varchar(255) DEFAULT '' COMMENT '游戏数据库名',
  586. `db_log_name` varchar(255) DEFAULT '' COMMENT '日志数据库名',
  587. `status` int(11) DEFAULT '0' COMMENT '状态,0维护,1流畅,2爆满,3新服',
  588. `recommend` char(5) DEFAULT 'false' COMMENT '是否为推荐服务器',
  589. `open_time` datetime DEFAULT NULL COMMENT '预期开服时间',
  590. `real_open_time` datetime DEFAULT NULL COMMENT '实际开服时间',
  591. `send_open_status` int(11) DEFAULT '0' COMMENT '开服时间是否发送成功,0未发送,1成功,2失败',
  592. `maintain` char(5) DEFAULT 'false' COMMENT '服务器是否维护中',
  593. `maintain_response` char(5) DEFAULT 'false' COMMENT '服务器维护消息是否发送成功',
  594. `merge` char(5) DEFAULT 'false' COMMENT '服务器是否已被合服',
  595. `hide` char(5) DEFAULT 'false' COMMENT '是否隐藏入口',
  596. PRIMARY KEY (`id`),
  597. UNIQUE KEY `platformid_serverid` (`platform_id`,`server_id`) USING BTREE
  598. ) ENGINE=InnoDB AUTO_INCREMENT=10002 DEFAULT CHARSET=utf8mb4 COMMENT='游戏服务器表';
  599. -- ----------------------------
  600. -- Records of game_server
  601. -- ----------------------------
  602. BEGIN;
  603. INSERT INTO `game_server` (`insert_time`, `update_time`, `id`, `platform_id`, `platform_name`, `server_id`, `name`, `server_type`, `socket_type`, `external_ip`, `internal_ip`, `tcp_port`, `http_port`, `db_game_name`, `db_log_name`, `status`, `recommend`, `open_time`, `real_open_time`, `send_open_status`, `maintain`, `maintain_response`, `merge`, `hide`) VALUES ('2024-11-22 10:08:45', '2024-11-22 11:19:26', 10001, 1001, '测试平台', 1, 'S1', 1, 'ws', '192.168.3.247', '192.168.3.247', 10004, 20004, 'x1_1_game', 'x1_1_log', 1, 'true', '2099-12-31 23:59:00', '2024-11-22 11:10:19', 2, 'false', 'true', 'false', 'false');
  604. COMMIT;
  605. -- ----------------------------
  606. -- Table structure for game_server_runtime
  607. -- ----------------------------
  608. DROP TABLE IF EXISTS `game_server_runtime`;
  609. CREATE TABLE `game_server_runtime` (
  610. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  611. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  612. `server_uid` int(11) NOT NULL COMMENT '服务器唯一ID',
  613. `register_num` int(11) DEFAULT '0' COMMENT '注册数',
  614. `create_num` int(11) DEFAULT '0' COMMENT '创角数',
  615. `online_num` int(11) DEFAULT '0' COMMENT '在线数',
  616. `battle_num` int(11) DEFAULT '0' COMMENT '战斗数',
  617. `curr_battle_num` int(11) DEFAULT '0' COMMENT '当前战斗数',
  618. `running` char(5) DEFAULT 'false' COMMENT '服务器是否正常运行',
  619. `heart_time` datetime DEFAULT NULL COMMENT '最后心跳时间',
  620. `max_memory` varchar(255) DEFAULT '' COMMENT '最大可用内存',
  621. `free_memory` varchar(255) DEFAULT '' COMMENT '空闲内存',
  622. `total_memory` varchar(255) DEFAULT '' COMMENT '占用内存(占用内存=空闲内存+实际使用内存)',
  623. `used_memory` varchar(255) DEFAULT '' COMMENT '实际使用内存',
  624. `left_memory` varchar(255) DEFAULT '' COMMENT '剩余可用内存(剩余可用内存=最大可用内存-实际使用内存)',
  625. PRIMARY KEY (`server_uid`)
  626. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='游戏服务器运行数据表';
  627. -- ----------------------------
  628. -- Records of game_server_runtime
  629. -- ----------------------------
  630. BEGIN;
  631. INSERT INTO `game_server_runtime` (`insert_time`, `update_time`, `server_uid`, `register_num`, `create_num`, `online_num`, `battle_num`, `curr_battle_num`, `running`, `heart_time`, `max_memory`, `free_memory`, `total_memory`, `used_memory`, `left_memory`) VALUES ('2024-11-22 10:09:04', '2025-02-28 11:02:03', 10001, 2, 2, 0, 0, 0, 'true', '2025-02-28 11:02:03', '3.56G', '252.31M', '457.00M', '204.69M', '3.36G');
  632. COMMIT;
  633. -- ----------------------------
  634. -- Table structure for gift_code
  635. -- ----------------------------
  636. DROP TABLE IF EXISTS `gift_code`;
  637. CREATE TABLE `gift_code` (
  638. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  639. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  640. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '记录ID',
  641. `code` varchar(255) DEFAULT '' COMMENT '礼包码',
  642. `channel_id` bigint(20) DEFAULT '0' COMMENT '所属渠道ID',
  643. `type` int(11) DEFAULT '0' COMMENT '礼包码类型,1通码,2独享码',
  644. `config_id` int(11) DEFAULT '0' COMMENT '配置礼包ID',
  645. `config_name` varchar(255) DEFAULT '' COMMENT '配置礼包名称',
  646. `user_id` bigint(20) DEFAULT '0' COMMENT '创建的用户ID',
  647. `user_name` varchar(255) DEFAULT '' COMMENT '创建的用户名称',
  648. `player_id` bigint(20) DEFAULT '0' COMMENT '使用码的玩家ID',
  649. `player_name` varchar(255) DEFAULT '' COMMENT '使用码的玩家名称',
  650. PRIMARY KEY (`id`),
  651. UNIQUE KEY `code` (`code`) USING BTREE
  652. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='礼包码表';
  653. -- ----------------------------
  654. -- Records of gift_code
  655. -- ----------------------------
  656. BEGIN;
  657. COMMIT;
  658. -- ----------------------------
  659. -- Table structure for gift_code_cfg
  660. -- ----------------------------
  661. DROP TABLE IF EXISTS `gift_code_cfg`;
  662. CREATE TABLE `gift_code_cfg` (
  663. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  664. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  665. `id` int(11) NOT NULL COMMENT '礼包ID',
  666. `name` varchar(255) DEFAULT '' COMMENT '礼包名字',
  667. PRIMARY KEY (`id`)
  668. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='兑换码礼包配置';
  669. -- ----------------------------
  670. -- Records of gift_code_cfg
  671. -- ----------------------------
  672. BEGIN;
  673. COMMIT;
  674. -- ----------------------------
  675. -- Table structure for gift_code_share_log
  676. -- ----------------------------
  677. DROP TABLE IF EXISTS `gift_code_share_log`;
  678. CREATE TABLE `gift_code_share_log` (
  679. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  680. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  681. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '记录ID',
  682. `code` varchar(255) DEFAULT '' COMMENT '礼包码',
  683. `player_id` bigint(20) DEFAULT '0' COMMENT '玩家ID',
  684. `player_name` varchar(255) DEFAULT '' COMMENT '玩家名称',
  685. PRIMARY KEY (`id`)
  686. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='共享礼包码使用情况表';
  687. -- ----------------------------
  688. -- Records of gift_code_share_log
  689. -- ----------------------------
  690. BEGIN;
  691. COMMIT;
  692. -- ----------------------------
  693. -- Table structure for god_finger
  694. -- ----------------------------
  695. DROP TABLE IF EXISTS `god_finger`;
  696. CREATE TABLE `god_finger` (
  697. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  698. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  699. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  700. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  701. `channel_name` varchar(255) DEFAULT '' COMMENT '渠道名字',
  702. `server_uid` int(11) DEFAULT '0' COMMENT '服务器唯一ID',
  703. `server_id` int(11) DEFAULT '0' COMMENT '服务器ID',
  704. `server_name` varchar(255) DEFAULT '' COMMENT '服务器名字',
  705. `player_id` bigint(20) DEFAULT '0' COMMENT '玩家ID',
  706. `open_id` varchar(255) DEFAULT '' COMMENT '账号ID',
  707. `nick` varchar(255) DEFAULT '' COMMENT '玩家昵称',
  708. `remark` varchar(255) DEFAULT '' COMMENT '备注',
  709. `money` bigint(20) DEFAULT '0' COMMENT '每日金额',
  710. `user_id` bigint(20) DEFAULT '0' COMMENT '添加金手指的用户',
  711. `user_name` varchar(255) DEFAULT '' COMMENT '添加金手指的用户',
  712. PRIMARY KEY (`id`)
  713. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='金手指表';
  714. -- ----------------------------
  715. -- Records of god_finger
  716. -- ----------------------------
  717. BEGIN;
  718. COMMIT;
  719. -- ----------------------------
  720. -- Table structure for item_cfg
  721. -- ----------------------------
  722. DROP TABLE IF EXISTS `item_cfg`;
  723. CREATE TABLE `item_cfg` (
  724. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  725. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  726. `id` int(11) NOT NULL COMMENT '道具ID',
  727. `name` varchar(255) DEFAULT '' COMMENT '道具名',
  728. PRIMARY KEY (`id`)
  729. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='道具配置';
  730. -- ----------------------------
  731. -- Records of item_cfg
  732. -- ----------------------------
  733. BEGIN;
  734. COMMIT;
  735. -- ----------------------------
  736. -- Table structure for mail_setting
  737. -- ----------------------------
  738. DROP TABLE IF EXISTS `mail_setting`;
  739. CREATE TABLE `mail_setting` (
  740. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  741. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  742. `id` bigint(20) NOT NULL COMMENT 'ID',
  743. `protocol` varchar(255) DEFAULT '' COMMENT '邮件协议',
  744. `host` varchar(255) DEFAULT '' COMMENT '邮箱系统服务器地址',
  745. `port` int(11) DEFAULT '0' COMMENT '端口',
  746. `account` varchar(255) DEFAULT '' COMMENT '发件人邮箱地址',
  747. `auth_code` varchar(255) DEFAULT '' COMMENT '发件人邮箱授权码',
  748. `client_master_mail` varchar(255) DEFAULT '' COMMENT '客户端管理员邮箱地址',
  749. `server_master_mail` varchar(255) DEFAULT '' COMMENT '服务端管理员邮箱地址',
  750. PRIMARY KEY (`id`)
  751. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='后台邮箱发送配置';
  752. -- ----------------------------
  753. -- Records of mail_setting
  754. -- ----------------------------
  755. BEGIN;
  756. INSERT INTO `mail_setting` (`insert_time`, `update_time`, `id`, `protocol`, `host`, `port`, `account`, `auth_code`, `client_master_mail`, `server_master_mail`) VALUES ('2024-11-21 18:09:32', '2024-11-21 18:09:32', 1, 'smtp', 'smtp.qq.com', 465, '3462921572@qq.com', 'kefizuhspramdbae', '89662961@qq.com', '89662961@qq.com');
  757. COMMIT;
  758. -- ----------------------------
  759. -- Table structure for mail_system
  760. -- ----------------------------
  761. DROP TABLE IF EXISTS `mail_system`;
  762. CREATE TABLE `mail_system` (
  763. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  764. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  765. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  766. `user_id` bigint(20) DEFAULT '0' COMMENT '创建邮件的用户',
  767. `user_name` varchar(255) DEFAULT '' COMMENT '创建邮件的用户',
  768. `title` varchar(255) DEFAULT '' COMMENT '标题',
  769. `content` text COMMENT '内容',
  770. `rewards` varchar(5000) DEFAULT '' COMMENT '奖励',
  771. `type` int(11) DEFAULT '0' COMMENT '邮件类型,1全服邮件,2玩家邮件',
  772. `server_uids` text COMMENT '服务器唯一ID集合',
  773. `send_server_uids` text COMMENT '已发送的服务器唯一ID集合',
  774. `delete_server_uids` text COMMENT '已发送删除的服务器唯一ID集合',
  775. `pids` text COMMENT '玩家ID集合,分号分隔',
  776. `player_level` int(11) DEFAULT '0' COMMENT '收到邮件的玩家等级限制',
  777. `status` int(11) DEFAULT '0' COMMENT '邮件审核状态,0未审核,1审核通过,2审核不通过,3通知删除',
  778. `check_user_id` bigint(20) DEFAULT '0' COMMENT '审核用户ID',
  779. `check_user_name` varchar(255) DEFAULT '' COMMENT '审核用户',
  780. PRIMARY KEY (`id`)
  781. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='系统邮件表';
  782. -- ----------------------------
  783. -- Records of mail_system
  784. -- ----------------------------
  785. BEGIN;
  786. COMMIT;
  787. -- ----------------------------
  788. -- Table structure for mail_system_result
  789. -- ----------------------------
  790. DROP TABLE IF EXISTS `mail_system_result`;
  791. CREATE TABLE `mail_system_result` (
  792. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  793. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  794. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '日志ID',
  795. `mail_id` bigint(20) DEFAULT '0' COMMENT '系统邮件ID',
  796. `server_uid` bigint(20) DEFAULT '0' COMMENT '服务器ID',
  797. `server_id` int(11) DEFAULT '0' COMMENT '服务器名字',
  798. `server_name` varchar(255) DEFAULT '' COMMENT '服务器名字',
  799. `type_text` varchar(255) DEFAULT '' COMMENT '结果类型',
  800. `status` int(11) DEFAULT '0' COMMENT '处理状态,0未处理,1成功,2失败',
  801. `message` varchar(255) DEFAULT '' COMMENT '处理信息',
  802. PRIMARY KEY (`id`)
  803. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='系统邮件发送回执表';
  804. -- ----------------------------
  805. -- Records of mail_system_result
  806. -- ----------------------------
  807. BEGIN;
  808. COMMIT;
  809. -- ----------------------------
  810. -- Table structure for menu1_system
  811. -- ----------------------------
  812. DROP TABLE IF EXISTS `menu1_system`;
  813. CREATE TABLE `menu1_system` (
  814. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  815. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  816. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  817. `title` varchar(255) DEFAULT '' COMMENT '系统名字',
  818. `sort` bigint(20) DEFAULT '0' COMMENT '排序位置',
  819. `icon` varchar(255) DEFAULT '' COMMENT '图标',
  820. `route_name` varchar(255) DEFAULT '' COMMENT '路由名字',
  821. `route_path` varchar(255) DEFAULT '' COMMENT '路由路径',
  822. `component` varchar(255) DEFAULT '' COMMENT '组件',
  823. PRIMARY KEY (`id`)
  824. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='系统菜单,系统菜单>模块菜单>功能菜单';
  825. -- ----------------------------
  826. -- Records of menu1_system
  827. -- ----------------------------
  828. BEGIN;
  829. INSERT INTO `menu1_system` (`insert_time`, `update_time`, `id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 1, '系统设置', 1, '', 'systemSettings', '/systemSettings', 'Layout');
  830. INSERT INTO `menu1_system` (`insert_time`, `update_time`, `id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 2, '游戏管理', 2, '', 'gameSettings', '/gameSettings', 'Layout');
  831. COMMIT;
  832. -- ----------------------------
  833. -- Table structure for menu2_module
  834. -- ----------------------------
  835. DROP TABLE IF EXISTS `menu2_module`;
  836. CREATE TABLE `menu2_module` (
  837. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  838. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  839. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  840. `system_id` bigint(20) DEFAULT '0' COMMENT '所属的系统菜单ID',
  841. `title` varchar(255) DEFAULT '' COMMENT '模块名字',
  842. `sort` bigint(20) DEFAULT '0' COMMENT '排序位置',
  843. `icon` varchar(255) DEFAULT '' COMMENT '图标',
  844. `route_name` varchar(255) DEFAULT '' COMMENT '路由名字',
  845. `route_path` varchar(255) DEFAULT '' COMMENT '路由路径',
  846. `component` varchar(255) DEFAULT '' COMMENT '组件',
  847. PRIMARY KEY (`id`)
  848. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='模块菜单,导航区的分类菜单';
  849. -- ----------------------------
  850. -- Records of menu2_module
  851. -- ----------------------------
  852. BEGIN;
  853. INSERT INTO `menu2_module` (`insert_time`, `update_time`, `id`, `system_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 1, 1, '菜单设置', 1, '', 'menuSettings', 'menuSettings', 'layout/secondaryLayout');
  854. INSERT INTO `menu2_module` (`insert_time`, `update_time`, `id`, `system_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 2, 1, '用户设置', 2, '', 'userSettings', 'userSettings', 'layout/secondaryLayout');
  855. INSERT INTO `menu2_module` (`insert_time`, `update_time`, `id`, `system_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 3, 1, '接口说明', 3, '', 'apiSettings', 'apiSettings', 'layout/secondaryLayout');
  856. INSERT INTO `menu2_module` (`insert_time`, `update_time`, `id`, `system_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 10001, 2, '服务器管理', 0, '', 'serverSettings', 'serverSettings', 'layout/secondaryLayout');
  857. INSERT INTO `menu2_module` (`insert_time`, `update_time`, `id`, `system_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 10002, 2, '玩家管理', 0, '', 'loginSettings', 'loginSettings', 'layout/secondaryLayout');
  858. INSERT INTO `menu2_module` (`insert_time`, `update_time`, `id`, `system_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 10003, 2, '游戏统计数据', 0, '', 'censusSettings', 'censusSettings', 'layout/secondaryLayout');
  859. INSERT INTO `menu2_module` (`insert_time`, `update_time`, `id`, `system_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 10004, 2, '邮件相关', 0, '', 'mailSettings', 'mailSettings', 'layout/secondaryLayout');
  860. INSERT INTO `menu2_module` (`insert_time`, `update_time`, `id`, `system_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 10005, 2, '玩家流水查询', 0, '', 'logSettings', 'logSettings', 'layout/secondaryLayout');
  861. INSERT INTO `menu2_module` (`insert_time`, `update_time`, `id`, `system_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 10006, 2, '特殊操作', 0, '', 'fixSettings', 'fixSettings', 'layout/secondaryLayout');
  862. INSERT INTO `menu2_module` (`insert_time`, `update_time`, `id`, `system_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `component`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 10007, 2, '充值相关', 0, '', 'rechargeSettings', 'rechargeSettings', 'layout/secondaryLayout');
  863. COMMIT;
  864. -- ----------------------------
  865. -- Table structure for menu3_function
  866. -- ----------------------------
  867. DROP TABLE IF EXISTS `menu3_function`;
  868. CREATE TABLE `menu3_function` (
  869. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  870. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  871. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  872. `module_id` bigint(20) DEFAULT '0' COMMENT '所属的模块菜单ID',
  873. `title` varchar(255) DEFAULT '' COMMENT '功能名字',
  874. `sort` bigint(20) DEFAULT '0' COMMENT '排序位置',
  875. `icon` varchar(255) DEFAULT '' COMMENT '图标',
  876. `route_name` varchar(255) DEFAULT '' COMMENT '路由名字',
  877. `route_path` varchar(255) DEFAULT '' COMMENT '路由路径',
  878. `auth_clazz` varchar(255) DEFAULT '' COMMENT '权限验证归属类',
  879. PRIMARY KEY (`id`)
  880. ) ENGINE=InnoDB AUTO_INCREMENT=100000065 DEFAULT CHARSET=utf8mb4 COMMENT='功能菜单,具体的业务功能菜单';
  881. -- ----------------------------
  882. -- Records of menu3_function
  883. -- ----------------------------
  884. BEGIN;
  885. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 100000001, 1, '系统菜单', 1, '', 'systemMenu', 'systemMenu', 'SystemMenuController');
  886. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 100000002, 1, '模块菜单', 2, '', 'moduleMenu', 'moduleMenu', 'ModuleMenuController');
  887. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 100000003, 1, '功能菜单', 3, '', 'functionMenu', 'functionMenu', 'FunctionMenuController');
  888. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 100000004, 2, '用户管理', 1, '', 'user', 'user', 'UserController');
  889. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 100000005, 2, '用户权限管理', 2, '', 'userFunction', 'userFunction', 'UserFunctionController');
  890. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 100000006, 2, '用户操作日志', 3, '', 'userLog', 'userLog', 'UserLogController');
  891. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 100000007, 3, '接口说明', 1, '', 'apidoc', 'apidoc', 'ApiDocController');
  892. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:34', '2024-11-21 18:09:34', 100000008, 3, '空白主页', 1, '', 'home', 'home', 'ApiDocController');
  893. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000009, 10001, '平台管理', 1, '', 'gamePlatform', 'gamePlatform', 'GamePlatformController');
  894. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000010, 10001, '渠道管理', 2, '', 'gameChannel', 'gameChannel', 'GameChannelController');
  895. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000011, 10001, '服务器管理', 3, '', 'gameServer', 'gameServer', 'GameServerController');
  896. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000012, 10001, '渠道与服务器关系', 4, '', 'gameChannelServer', 'gameChannelServer', 'GameChannelServerController');
  897. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000013, 10001, '渠道大区管理', 5, '', 'gameRegion', 'gameRegion', 'GameRegionController');
  898. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000014, 10001, '开服管理', 6, '', 'serverOpen', 'serverOpen', 'ServerOpenController');
  899. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000015, 10001, '渠道权限管理', 7, '', 'userChannel', 'userChannel', 'UserChannelController');
  900. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000016, 10001, '游戏公告管理', 8, '', 'bulletin', 'bulletin', 'BulletinController');
  901. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000017, 10001, '服务器维护管理', 9, '', 'gameServerMaintain', 'gameServerMaintain', 'GameServerMaintainController');
  902. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000018, 10001, '客户端版本管理', 10, '', 'clientVersion', 'clientVersion', 'ClientVersionController');
  903. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000019, 10002, '玩家信息管理', 1, '', 'player', 'player', 'PlayerController');
  904. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000020, 10002, '白名单管理', 2, '', 'whiteList', 'whiteList', 'WhiteListController');
  905. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000021, 10002, '金手指名单', 3, '', 'godFinger', 'godFinger', 'GodFingerController');
  906. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000022, 10002, '封禁账号', 4, '', 'forbidList', 'forbidList', 'ForbidListController');
  907. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000023, 10003, '注册分时', 1, '', 'playerTimeLog', 'playerTimeLog', 'PlayerTimeLogController');
  908. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000024, 10003, '在线人数', 2, '', 'playerOnlineLog', 'playerOnlineLog', 'PlayerOnlineLogController');
  909. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000025, 10003, '在线时长占比', 3, '', 'playerScatterLog', 'playerScatterLog', 'PlayerScatterLogController');
  910. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000026, 10003, '玩家留存', 4, '', 'playerRemain', 'playerRemain', 'PlayerRemainController');
  911. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000027, 10003, '付费留存', 5, '', 'playerPayRemain', 'playerPayRemain', 'PlayerPayRemainController');
  912. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000028, 10003, '付费LTV', 6, '', 'playerLTV', 'playerLTV', 'PlayerLTVController');
  913. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000029, 10003, '游戏汇总', 7, '', 'serverResume', 'serverResume', 'ServerResumeController');
  914. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000030, 10003, '货币消费统计', 8, '', 'consume', 'consume', 'ConsumeController');
  915. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000031, 10003, '登录数据打点', 9, '', 'loginDotData', 'loginDotData', 'LoginDotDataController');
  916. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000032, 10003, '任务数据打点', 10, '', 'taskDotData', 'taskDotData', 'TaskDotDataController');
  917. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000033, 10003, '引导数据打点', 11, '', 'guideDotData', 'guideDotData', 'GuideDotDataController');
  918. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000034, 10003, '招募数据打点', 11, '', 'recruitDotData', 'recruitDotData', 'RecruitDotDataController');
  919. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000035, 10003, '招募刷新数据打点', 12, '', 'recruitRefreshDotData', 'recruitRefreshDotData', 'RecruitRefreshDotDataController');
  920. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000036, 10003, 'BOSS击杀数据打点', 13, '', 'bossDotData', 'bossDotData', 'BossDotDataController');
  921. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:35', '2024-11-21 18:09:35', 100000037, 10003, '场景区域解锁数据打点', 14, '', 'fogDotData', 'fogDotData', 'FogDotDataController');
  922. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000038, 10004, '系统邮件', 1, '', 'mailSystem', 'mailSystem', 'MailSystemController');
  923. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000039, 10004, '玩家邮件', 2, '', 'playerMail', 'playerMail', 'PlayerMailController');
  924. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000040, 10005, '钻石日志', 1, '', 'diamondLogs', 'diamondLogs', 'GameLogController');
  925. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000041, 10005, '金币日志', 2, '', 'goldLogs', 'goldLogs', 'GameLogController');
  926. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000042, 10005, '道具日志', 3, '', 'itemLogs', 'itemLogs', 'GameLogController');
  927. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000043, 10005, '肉日志', 4, '', 'meatLogs', 'meatLogs', 'GameLogController');
  928. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000044, 10005, '木日志', 5, '', 'woodLogs', 'woodLogs', 'GameLogController');
  929. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000045, 10005, '矿日志', 6, '', 'mineLogs', 'mineLogs', 'GameLogController');
  930. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000046, 10005, '英雄日志', 7, '', 'heroLogs', 'heroLogs', 'GameLogController');
  931. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000047, 10005, '装备日志', 8, '', 'equipLogs', 'equipLogs', 'GameLogController');
  932. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000048, 10005, '角色经验日志', 9, '', 'playerExpLogs', 'playerExpLogs', 'GameLogController');
  933. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000049, 10005, '英雄战力日志', 10, '', 'heroFightingLogs', 'heroFightingLogs', 'GameLogController');
  934. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000050, 10005, '已删邮件日志', 11, '', 'mailLogs', 'mailLogs', 'GameLogController');
  935. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000051, 10005, '玩家战力日志', 12, '', 'playerFightingLogs', 'playerFightingLogs', 'GameLogController');
  936. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000052, 10006, '热更配置', 1, '', 'fixDesign', 'fixDesign', 'FixDesignController');
  937. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000053, 10006, '热更代码', 2, '', 'fixCode', 'fixCode', 'FixCodeController');
  938. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000054, 10006, '流水事件', 3, '', 'gameCause', 'gameCause', 'GameCauseController');
  939. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000055, 10006, '道具配置', 4, '', 'itemCfg', 'itemCfg', 'ItemCfgController');
  940. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000056, 10006, '兑换码礼包配置', 5, '', 'giftCodeCfg', 'giftCodeCfg', 'GiftCodeCfgController');
  941. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000057, 10006, '兑换码生成', 6, '', 'giftCode', 'giftCode', 'GiftCodeController');
  942. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000058, 10006, '通用兑换码日志', 7, '', 'giftCodeShareLog', 'giftCodeShareLog', 'GiftCodeShareLogController');
  943. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000059, 10006, '客户端日志', 8, '', 'clientLog', 'clientLog', 'ClientLogController');
  944. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000060, 10006, '充值商品配置', 9, '', 'rechargeProductCfg', 'rechargeProductCfg', 'RechargeProductCfgController');
  945. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000061, 10007, '充值回调查询', 1, '', 'recharge', 'recharge', 'RechargeCallbackController');
  946. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000062, 10007, '充值排名', 2, '', 'rechargeRank', 'rechargeRank', 'RechargeRankController');
  947. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000063, 10007, '充值项目统计', 3, '', 'rechargeProductCount', 'rechargeProductCount', 'RechargeProductCountController');
  948. INSERT INTO `menu3_function` (`insert_time`, `update_time`, `id`, `module_id`, `title`, `sort`, `icon`, `route_name`, `route_path`, `auth_clazz`) VALUES ('2024-11-21 18:09:36', '2024-11-21 18:09:36', 100000064, 10007, '虚拟充值(内部充值)', 4, '', 'rechargeVirtual', 'rechargeVirtual', 'RechargeVirtualController');
  949. COMMIT;
  950. -- ----------------------------
  951. -- Table structure for player
  952. -- ----------------------------
  953. DROP TABLE IF EXISTS `player`;
  954. CREATE TABLE `player` (
  955. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  956. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  957. `id` bigint(20) NOT NULL COMMENT '玩家ID,全平台唯一',
  958. `platform_id` bigint(20) DEFAULT '0' COMMENT '平台ID',
  959. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  960. `open_id` varchar(255) DEFAULT '' COMMENT '账户ID',
  961. `server_id` int(11) DEFAULT '0' COMMENT '服务器ID',
  962. `nick` varchar(255) DEFAULT '' COMMENT '昵称',
  963. `head` varchar(255) DEFAULT '' COMMENT '头像',
  964. `sex` int(11) DEFAULT '0' COMMENT '性别,0无性别,1男,2女',
  965. `level` int(11) DEFAULT '0' COMMENT '等级',
  966. `gold` bigint(20) DEFAULT '0' COMMENT '金币',
  967. `diamond` bigint(20) DEFAULT '0' COMMENT '钻石',
  968. `fighting` bigint(20) DEFAULT '0' COMMENT '战力',
  969. `recharge` bigint(20) DEFAULT '0' COMMENT '充值金额',
  970. `online` char(5) DEFAULT 'false' COMMENT '是否在线',
  971. `daily_online` bigint(20) DEFAULT '0' COMMENT '今日在线时长',
  972. `born_time` datetime DEFAULT NULL COMMENT '创号时间',
  973. `last_login_time` datetime DEFAULT NULL COMMENT '最后登录时间',
  974. PRIMARY KEY (`id`),
  975. KEY `channelid_openid` (`channel_id`,`open_id`) USING BTREE
  976. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='玩家信息表';
  977. -- ----------------------------
  978. -- Records of player
  979. -- ----------------------------
  980. BEGIN;
  981. INSERT INTO `player` (`insert_time`, `update_time`, `id`, `platform_id`, `channel_id`, `open_id`, `server_id`, `nick`, `head`, `sex`, `level`, `gold`, `diamond`, `fighting`, `recharge`, `online`, `daily_online`, `born_time`, `last_login_time`) VALUES ('2024-11-22 11:02:13', '2024-11-22 11:21:53', 335879897874433, 1001, 1, 'zxt', 1, '宁丁兰', '', 0, 1, 0, 0, 540, 0, 'true', 179, '2024-11-22 11:02:10', '2024-11-22 11:21:30');
  982. INSERT INTO `player` (`insert_time`, `update_time`, `id`, `platform_id`, `channel_id`, `open_id`, `server_id`, `nick`, `head`, `sex`, `level`, `gold`, `diamond`, `fighting`, `recharge`, `online`, `daily_online`, `born_time`, `last_login_time`) VALUES ('2024-11-22 11:37:24', '2024-11-22 11:50:24', 335879897874434, 1001, 2, 'xg011732246612147', 1, '方昊乾', '', 0, 3, 20, 0, 1043, 0, 'false', 776, '2024-11-22 11:37:06', '2024-11-22 11:37:06');
  983. COMMIT;
  984. -- ----------------------------
  985. -- Table structure for player_ltv
  986. -- ----------------------------
  987. DROP TABLE IF EXISTS `player_ltv`;
  988. CREATE TABLE `player_ltv` (
  989. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  990. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  991. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  992. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  993. `server_uid` bigint(20) DEFAULT '0' COMMENT '服务器唯一ID',
  994. `born` varchar(255) DEFAULT '' COMMENT '创号日期,yyyyMMdd',
  995. `day_count` int(11) DEFAULT '0' COMMENT '距离创号时间的天数',
  996. `money` bigint(20) DEFAULT '0' COMMENT '总支付金额,单位分',
  997. `player_count` int(11) DEFAULT '0' COMMENT '创号玩家数量',
  998. PRIMARY KEY (`id`),
  999. UNIQUE KEY `channelid_born_daycount` (`channel_id`,`born`,`day_count`) USING BTREE
  1000. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='玩家生命周期价值LTV表';
  1001. -- ----------------------------
  1002. -- Records of player_ltv
  1003. -- ----------------------------
  1004. BEGIN;
  1005. COMMIT;
  1006. -- ----------------------------
  1007. -- Table structure for player_pay_remain
  1008. -- ----------------------------
  1009. DROP TABLE IF EXISTS `player_pay_remain`;
  1010. CREATE TABLE `player_pay_remain` (
  1011. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1012. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1013. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  1014. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  1015. `server_uid` bigint(20) DEFAULT '0' COMMENT '服务器唯一ID',
  1016. `born` varchar(255) DEFAULT '' COMMENT '创号日期,yyyyMMdd',
  1017. `day_count` int(11) DEFAULT '0' COMMENT '距离创号时间的天数',
  1018. `player` int(11) DEFAULT '0' COMMENT '人数',
  1019. PRIMARY KEY (`id`),
  1020. UNIQUE KEY `csbd` (`channel_id`,`server_uid`,`born`,`day_count`) USING BTREE
  1021. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='玩家付费留存表';
  1022. -- ----------------------------
  1023. -- Records of player_pay_remain
  1024. -- ----------------------------
  1025. BEGIN;
  1026. COMMIT;
  1027. -- ----------------------------
  1028. -- Table structure for player_remain
  1029. -- ----------------------------
  1030. DROP TABLE IF EXISTS `player_remain`;
  1031. CREATE TABLE `player_remain` (
  1032. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1033. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1034. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  1035. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  1036. `server_uid` bigint(20) DEFAULT '0' COMMENT '服务器唯一ID',
  1037. `born` varchar(255) DEFAULT '' COMMENT '创号日期,yyyyMMdd',
  1038. `day_count` int(11) DEFAULT '0' COMMENT '距离创号时间的天数',
  1039. `player` int(11) DEFAULT '0' COMMENT '人数',
  1040. PRIMARY KEY (`id`),
  1041. UNIQUE KEY `csbd` (`channel_id`,`server_uid`,`born`,`day_count`) USING BTREE
  1042. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='玩家留存表';
  1043. -- ----------------------------
  1044. -- Records of player_remain
  1045. -- ----------------------------
  1046. BEGIN;
  1047. COMMIT;
  1048. -- ----------------------------
  1049. -- Table structure for recharge_callback
  1050. -- ----------------------------
  1051. DROP TABLE IF EXISTS `recharge_callback`;
  1052. CREATE TABLE `recharge_callback` (
  1053. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1054. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1055. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  1056. `platform_id` bigint(20) DEFAULT '0' COMMENT '平台ID',
  1057. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  1058. `server_id` int(11) DEFAULT '0' COMMENT '服务器ID',
  1059. `player_id` bigint(20) DEFAULT '0' COMMENT '玩家ID',
  1060. `nick` varchar(255) DEFAULT '' COMMENT '玩家名字',
  1061. `open_id` varchar(255) DEFAULT '' COMMENT '账号ID',
  1062. `level` int(11) DEFAULT '0' COMMENT '下单等级',
  1063. `sdk_order_id` varchar(255) DEFAULT '' COMMENT '渠道订单ID',
  1064. `game_order_id` varchar(255) DEFAULT '' COMMENT '游戏服的订单ID',
  1065. `money` bigint(20) DEFAULT '0' COMMENT '支付金额',
  1066. `product_id` int(11) DEFAULT '0' COMMENT '充值商品ID',
  1067. `product_name` varchar(255) DEFAULT '' COMMENT '充值商品名字',
  1068. `give` int(11) DEFAULT '0' COMMENT '发货状态,0未处理,1发货成功,2发货失败',
  1069. `remark` varchar(3000) DEFAULT '' COMMENT '备注',
  1070. `remark_idx` int(11) DEFAULT '0' COMMENT '备注序号',
  1071. `test` int(11) DEFAULT '0' COMMENT '是否测试订单,1是,0不是',
  1072. `all_check` char(5) DEFAULT 'false' COMMENT '是否所有验证都通过',
  1073. `sign` varchar(255) DEFAULT '' COMMENT '订单签名',
  1074. `local_sign` varchar(255) DEFAULT '' COMMENT '本地订单签名',
  1075. `extra_sign` varchar(255) DEFAULT '' COMMENT '扩展参数签名',
  1076. `local_extra_sign` varchar(255) DEFAULT '' COMMENT '本地扩展参数签名',
  1077. `remote_ip` varchar(255) DEFAULT '' COMMENT '请求的IP',
  1078. `callback_data` text COMMENT '回调原数据',
  1079. `game_response` varchar(255) DEFAULT '' COMMENT '游戏服的响应',
  1080. PRIMARY KEY (`id`)
  1081. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='充值回调表';
  1082. -- ----------------------------
  1083. -- Records of recharge_callback
  1084. -- ----------------------------
  1085. BEGIN;
  1086. COMMIT;
  1087. -- ----------------------------
  1088. -- Table structure for recharge_one_date
  1089. -- ----------------------------
  1090. DROP TABLE IF EXISTS `recharge_one_date`;
  1091. CREATE TABLE `recharge_one_date` (
  1092. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1093. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1094. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  1095. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  1096. `channel_name` varchar(255) DEFAULT '' COMMENT '渠道名称',
  1097. `server_uid` bigint(20) DEFAULT '0' COMMENT '服务器唯一ID',
  1098. `server_id` int(11) DEFAULT '0' COMMENT '服务器ID',
  1099. `server_name` varchar(255) DEFAULT '' COMMENT '服务器名字',
  1100. `player_id` bigint(20) DEFAULT '0' COMMENT '玩家ID',
  1101. `nick` varchar(255) DEFAULT '' COMMENT '玩家昵称',
  1102. `date_str` varchar(255) DEFAULT '' COMMENT '日期yyyyMMdd',
  1103. `total_pay` bigint(20) DEFAULT '0' COMMENT '当日总支付',
  1104. `last_recharge_time` datetime DEFAULT NULL COMMENT '当日最后充值时间',
  1105. PRIMARY KEY (`id`),
  1106. UNIQUE KEY `channel_player_date` (`channel_id`,`player_id`,`date_str`) USING BTREE,
  1107. KEY `channelid` (`channel_id`) USING BTREE
  1108. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='玩家某一天的充值表';
  1109. -- ----------------------------
  1110. -- Records of recharge_one_date
  1111. -- ----------------------------
  1112. BEGIN;
  1113. COMMIT;
  1114. -- ----------------------------
  1115. -- Table structure for recharge_product_cfg
  1116. -- ----------------------------
  1117. DROP TABLE IF EXISTS `recharge_product_cfg`;
  1118. CREATE TABLE `recharge_product_cfg` (
  1119. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1120. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1121. `id` int(11) NOT NULL COMMENT '商品ID',
  1122. `name` varchar(255) DEFAULT '' COMMENT '商品名',
  1123. `describe` varchar(255) DEFAULT '' COMMENT '商品描述',
  1124. `money` bigint(20) DEFAULT '0' COMMENT '金额,单位分',
  1125. PRIMARY KEY (`id`)
  1126. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品配置';
  1127. -- ----------------------------
  1128. -- Records of recharge_product_cfg
  1129. -- ----------------------------
  1130. BEGIN;
  1131. COMMIT;
  1132. -- ----------------------------
  1133. -- Table structure for recharge_product_count
  1134. -- ----------------------------
  1135. DROP TABLE IF EXISTS `recharge_product_count`;
  1136. CREATE TABLE `recharge_product_count` (
  1137. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1138. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1139. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  1140. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  1141. `product_id` int(11) DEFAULT '0' COMMENT '商品ID',
  1142. `product_name` varchar(255) DEFAULT '' COMMENT '商品名字',
  1143. `player_id` bigint(20) DEFAULT '0' COMMENT '玩家ID',
  1144. `pay_money` bigint(20) DEFAULT '0' COMMENT '支付金额',
  1145. `callback_id` bigint(20) DEFAULT '0' COMMENT '回调ID',
  1146. `server_uid` int(11) DEFAULT '0' COMMENT '服务器唯一ID',
  1147. PRIMARY KEY (`id`),
  1148. KEY `channelid` (`channel_id`) USING BTREE
  1149. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='充值商品统计表';
  1150. -- ----------------------------
  1151. -- Records of recharge_product_count
  1152. -- ----------------------------
  1153. BEGIN;
  1154. COMMIT;
  1155. -- ----------------------------
  1156. -- Table structure for recharge_today
  1157. -- ----------------------------
  1158. DROP TABLE IF EXISTS `recharge_today`;
  1159. CREATE TABLE `recharge_today` (
  1160. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1161. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1162. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  1163. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  1164. `player_id` bigint(20) DEFAULT '0' COMMENT '玩家ID',
  1165. `money` bigint(20) DEFAULT '0' COMMENT '支付金额',
  1166. `product_id` int(11) DEFAULT '0' COMMENT '充值商品ID',
  1167. `product_name` varchar(255) DEFAULT '' COMMENT '充值商品名字',
  1168. PRIMARY KEY (`id`)
  1169. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='今日充值表';
  1170. -- ----------------------------
  1171. -- Records of recharge_today
  1172. -- ----------------------------
  1173. BEGIN;
  1174. COMMIT;
  1175. -- ----------------------------
  1176. -- Table structure for recharge_virtual
  1177. -- ----------------------------
  1178. DROP TABLE IF EXISTS `recharge_virtual`;
  1179. CREATE TABLE `recharge_virtual` (
  1180. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1181. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1182. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '数据ID',
  1183. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  1184. `server_uid` bigint(20) DEFAULT '0' COMMENT '服务器唯一ID',
  1185. `server_id` int(11) DEFAULT '0' COMMENT '服务器ID',
  1186. `server_name` varchar(255) DEFAULT '' COMMENT '服务器名字',
  1187. `player_id` bigint(20) DEFAULT '0' COMMENT '玩家ID',
  1188. `nick` varchar(255) DEFAULT '' COMMENT '玩家名字',
  1189. `open_id` varchar(255) DEFAULT '' COMMENT '账号ID',
  1190. `product_id` int(11) DEFAULT '0' COMMENT '充值商品ID',
  1191. `product_name` varchar(255) DEFAULT '' COMMENT '充值商品名字',
  1192. `money` bigint(20) DEFAULT '0' COMMENT '金额',
  1193. `user_id` bigint(20) DEFAULT '0' COMMENT '操作员ID',
  1194. `user_name` varchar(255) DEFAULT '' COMMENT '操作员名称',
  1195. `status` int(11) DEFAULT '0' COMMENT '充值状态,0未处理,1成功,2失败',
  1196. `remark` varchar(255) DEFAULT '' COMMENT '备注',
  1197. PRIMARY KEY (`id`)
  1198. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='虚拟充值(内部充值)表';
  1199. -- ----------------------------
  1200. -- Records of recharge_virtual
  1201. -- ----------------------------
  1202. BEGIN;
  1203. COMMIT;
  1204. -- ----------------------------
  1205. -- Table structure for system_counter
  1206. -- ----------------------------
  1207. DROP TABLE IF EXISTS `system_counter`;
  1208. CREATE TABLE `system_counter` (
  1209. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1210. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1211. `id` bigint(20) NOT NULL COMMENT '数据ID',
  1212. `remain_time` bigint(20) DEFAULT '0' COMMENT '留存统计时间',
  1213. `pay_remain_time` bigint(20) DEFAULT '0' COMMENT '付费留存统计时间',
  1214. `ltv_time` bigint(20) DEFAULT '0' COMMENT 'LTV统计时间',
  1215. `god_finger_time` bigint(20) DEFAULT '0' COMMENT '金手指发放时间',
  1216. PRIMARY KEY (`id`)
  1217. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='系统数据统计时间表';
  1218. -- ----------------------------
  1219. -- Records of system_counter
  1220. -- ----------------------------
  1221. BEGIN;
  1222. INSERT INTO `system_counter` (`insert_time`, `update_time`, `id`, `remain_time`, `pay_remain_time`, `ltv_time`, `god_finger_time`) VALUES ('2024-11-21 18:09:36', '2025-02-28 09:38:48', 1, 1740758400000, 1740758400000, 1740749928231, 1740758400000);
  1223. COMMIT;
  1224. -- ----------------------------
  1225. -- Table structure for user
  1226. -- ----------------------------
  1227. DROP TABLE IF EXISTS `user`;
  1228. CREATE TABLE `user` (
  1229. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1230. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1231. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  1232. `name` varchar(255) DEFAULT '' COMMENT '用户名',
  1233. `password` varchar(255) DEFAULT '' COMMENT '密码',
  1234. `level` int(11) DEFAULT '0' COMMENT '用户级别,高级别用户创建低级别用户,数字越小级别越高',
  1235. `super_user` char(5) DEFAULT 'false' COMMENT '是否超级管理员,0不是,1是',
  1236. `up_user_id` bigint(20) DEFAULT '0' COMMENT '上级用户ID',
  1237. `phone` varchar(255) DEFAULT '' COMMENT '手机号码',
  1238. `mail_address` varchar(255) DEFAULT '' COMMENT '邮箱地址',
  1239. `usable` char(5) DEFAULT 'false' COMMENT '是否可用',
  1240. `can_read_sensitive` char(5) DEFAULT 'false' COMMENT '是否可查看敏感信息',
  1241. PRIMARY KEY (`id`),
  1242. UNIQUE KEY `name_index` (`name`) USING BTREE
  1243. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='用户表';
  1244. -- ----------------------------
  1245. -- Records of user
  1246. -- ----------------------------
  1247. BEGIN;
  1248. INSERT INTO `user` (`insert_time`, `update_time`, `id`, `name`, `password`, `level`, `super_user`, `up_user_id`, `phone`, `mail_address`, `usable`, `can_read_sensitive`) VALUES ('2024-11-21 18:53:13', '2024-11-21 18:53:15', 1, 'zx', '202cb962ac59075b964b07152d234b70', 0, 'true', 0, '', '', 'true', 'true');
  1249. COMMIT;
  1250. -- ----------------------------
  1251. -- Table structure for user_channel
  1252. -- ----------------------------
  1253. DROP TABLE IF EXISTS `user_channel`;
  1254. CREATE TABLE `user_channel` (
  1255. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1256. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1257. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  1258. `user_id` bigint(20) DEFAULT '0' COMMENT '用户ID',
  1259. `user_name` varchar(255) DEFAULT '' COMMENT '用户名称',
  1260. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  1261. `channel_name` varchar(255) DEFAULT '' COMMENT '渠道名称',
  1262. `grant_user_id` bigint(20) DEFAULT '0' COMMENT '授权的用户ID',
  1263. `grant_user_name` varchar(255) DEFAULT '' COMMENT '授权的用户名称',
  1264. PRIMARY KEY (`id`),
  1265. UNIQUE KEY `userId_channelId` (`user_id`,`channel_id`) USING BTREE
  1266. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='用户渠道表';
  1267. -- ----------------------------
  1268. -- Records of user_channel
  1269. -- ----------------------------
  1270. BEGIN;
  1271. COMMIT;
  1272. -- ----------------------------
  1273. -- Table structure for user_function
  1274. -- ----------------------------
  1275. DROP TABLE IF EXISTS `user_function`;
  1276. CREATE TABLE `user_function` (
  1277. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1278. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1279. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  1280. `user_id` bigint(20) DEFAULT '0' COMMENT '用户ID',
  1281. `user_name` varchar(255) DEFAULT '' COMMENT '用户名称',
  1282. `function_id` bigint(20) DEFAULT '0' COMMENT '功能菜单ID',
  1283. `function_name` varchar(255) DEFAULT '' COMMENT '功能菜单名字',
  1284. `writee` char(5) DEFAULT 'false' COMMENT '是否具有写权限',
  1285. `grant_user_id` bigint(20) DEFAULT '0' COMMENT '授权的用户ID',
  1286. `grant_user_name` varchar(255) DEFAULT '' COMMENT '授权的用户名称',
  1287. PRIMARY KEY (`id`),
  1288. UNIQUE KEY `unique_uf` (`user_id`,`function_id`) USING BTREE
  1289. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='用户功能权限表';
  1290. -- ----------------------------
  1291. -- Records of user_function
  1292. -- ----------------------------
  1293. BEGIN;
  1294. COMMIT;
  1295. -- ----------------------------
  1296. -- Table structure for wabo_setting
  1297. -- ----------------------------
  1298. DROP TABLE IF EXISTS `wabo_setting`;
  1299. CREATE TABLE `wabo_setting` (
  1300. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1301. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1302. `id` bigint(20) NOT NULL COMMENT '数据ID',
  1303. `game_id` varchar(255) DEFAULT '' COMMENT '渠道参数游戏ID',
  1304. `game_key` varchar(255) DEFAULT '' COMMENT '游戏密钥',
  1305. `login_url` varchar(255) DEFAULT '' COMMENT '验证登录URL',
  1306. PRIMARY KEY (`id`)
  1307. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='wabo渠道参数设置';
  1308. -- ----------------------------
  1309. -- Records of wabo_setting
  1310. -- ----------------------------
  1311. BEGIN;
  1312. INSERT INTO `wabo_setting` (`insert_time`, `update_time`, `id`, `game_id`, `game_key`, `login_url`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 1, '15345', 'sdasd', 'https://game-gateway.bepicgames.com/api/server/token');
  1313. COMMIT;
  1314. -- ----------------------------
  1315. -- Table structure for white_list
  1316. -- ----------------------------
  1317. DROP TABLE IF EXISTS `white_list`;
  1318. CREATE TABLE `white_list` (
  1319. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1320. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1321. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '唯一ID',
  1322. `channel_id` bigint(20) DEFAULT '0' COMMENT '渠道ID',
  1323. `channel_name` varchar(255) DEFAULT '' COMMENT '渠道名字',
  1324. `open_id` varchar(255) DEFAULT '' COMMENT '账户ID',
  1325. `user_id` bigint(20) DEFAULT '0' COMMENT '操作人ID',
  1326. `user_name` varchar(255) DEFAULT '' COMMENT '操作人名字',
  1327. `remark` varchar(255) DEFAULT '' COMMENT '备注',
  1328. PRIMARY KEY (`id`),
  1329. UNIQUE KEY `channelid_openid` (`channel_id`,`open_id`) USING BTREE
  1330. ) ENGINE=InnoDB AUTO_INCREMENT=100000001 DEFAULT CHARSET=utf8mb4 COMMENT='白名单表';
  1331. -- ----------------------------
  1332. -- Records of white_list
  1333. -- ----------------------------
  1334. BEGIN;
  1335. COMMIT;
  1336. -- ----------------------------
  1337. -- Table structure for yile_setting
  1338. -- ----------------------------
  1339. DROP TABLE IF EXISTS `yile_setting`;
  1340. CREATE TABLE `yile_setting` (
  1341. `insert_time` datetime DEFAULT NULL COMMENT '插入时间',
  1342. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  1343. `id` bigint(20) NOT NULL COMMENT '数据ID',
  1344. `platform_id` bigint(20) DEFAULT '0' COMMENT '益乐平台数据ID',
  1345. `game_id` varchar(255) DEFAULT '' COMMENT '益乐平台数据ID',
  1346. `product_key` varchar(255) DEFAULT '' COMMENT '益乐平台数据ID',
  1347. `charge_key` varchar(255) DEFAULT '' COMMENT '益乐平台数据ID',
  1348. `login_url` varchar(255) DEFAULT '' COMMENT '益乐平台数据ID',
  1349. PRIMARY KEY (`id`)
  1350. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='益乐渠道参数设置';
  1351. -- ----------------------------
  1352. -- Records of yile_setting
  1353. -- ----------------------------
  1354. BEGIN;
  1355. INSERT INTO `yile_setting` (`insert_time`, `update_time`, `id`, `platform_id`, `game_id`, `product_key`, `charge_key`, `login_url`) VALUES ('2024-11-21 18:09:33', '2024-11-21 18:09:33', 1, 0, '10910', '0f504f9466fb085b10be8fafe7debf65', 'e581eea614f472e294cea85d75a2eb62', 'https://oursdk.bingchenghuyu.com/cp/loginVerify');
  1356. COMMIT;
  1357. SET FOREIGN_KEY_CHECKS = 1;