|
@@ -0,0 +1,1720 @@
|
|
|
+import { ServiceProto } from 'tsrpc-proto';
|
|
|
+import { ReqaddBuMa, ResaddBuMa } from './admin/PtladdBuMa';
|
|
|
+import { ReqaddCode, ResaddCode } from './admin/PtladdCode';
|
|
|
+import { ReqaddMail, ResaddMail } from './admin/PtladdMail';
|
|
|
+import { ReqcacheVer, RescacheVer } from './admin/PtlcacheVer';
|
|
|
+import { ReqdeleteCode, ResdeleteCode } from './admin/PtldeleteCode';
|
|
|
+import { ReqdeleteMail, ResdeleteMail } from './admin/PtldeleteMail';
|
|
|
+import { ReqdeleteQuFu, ResdeleteQuFu } from './admin/PtldeleteQuFu';
|
|
|
+import { ReqdeleteSetting, ResdeleteSetting } from './admin/PtldeleteSetting';
|
|
|
+import { ReqgetCode, ResgetCode } from './admin/PtlgetCode';
|
|
|
+import { ReqgetCodeMa, ResgetCodeMa } from './admin/PtlgetCodeMa';
|
|
|
+import { ReqgetMail, ResgetMail } from './admin/PtlgetMail';
|
|
|
+import { ReqgetNeed, ResgetNeed } from './admin/PtlgetNeed';
|
|
|
+import { ReqgetQuFu, ResgetQuFu } from './admin/PtlgetQuFu';
|
|
|
+import { ReqgetSetting, ResgetSetting } from './admin/PtlgetSetting';
|
|
|
+import { ReqgetVer, ResgetVer } from './admin/PtlgetVer';
|
|
|
+import { ReqhuodongFind, ReshuodongFind } from './admin/PtlhuodongFind';
|
|
|
+import { RequpdateMail, ResupdateMail } from './admin/PtlupdateMail';
|
|
|
+import { RequpdateQuFu, ResupdateQuFu } from './admin/PtlupdateQuFu';
|
|
|
+import { RequpdateSetting, ResupdateSetting } from './admin/PtlupdateSetting';
|
|
|
+import { Reqxaizai, Resxaizai } from './admin/Ptlxaizai';
|
|
|
+import { MsgItems } from './common/MsgItems';
|
|
|
+import { MsgMessage } from './common/MsgMessage';
|
|
|
+import { MsgEpsInfo_c } from './eps/client/MsgEpsInfo_c';
|
|
|
+import { MsgEpsChange_s } from './eps/server/MsgEpsChange_s';
|
|
|
+import { MsgEpsInfo_s } from './eps/server/MsgEpsInfo_s';
|
|
|
+import { MsgHcInfo_c } from './hc/client/MsgHcInfo_c';
|
|
|
+import { ReqHcMerge, ResHcMerge } from './hc/PtlHcMerge';
|
|
|
+import { MsgHcInfo_s } from './hc/server/MsgHcInfo_s';
|
|
|
+import { MsgItemInfo_c } from './item/client/MsgItemInfo_c';
|
|
|
+import { MsgItemChange_s } from './item/server/MsgItemChange_s';
|
|
|
+import { MsgItemInfo_s } from './item/server/MsgItemInfo_s';
|
|
|
+import { ReqPlatLogin, ResPlatLogin } from './plat/PtlPlatLogin';
|
|
|
+import { ReqPlayerLogin, ResPlayerLogin } from './player/PtlPlayerLogin';
|
|
|
+import { MsgSetName_c } from './user/client/MsgSetName_c';
|
|
|
+import { MsgUserFight_c } from './user/client/MsgUserFight_c';
|
|
|
+import { ReqUserLogin, ResUserLogin } from './user/PtlUserLogin';
|
|
|
+import { MsgSetName_s } from './user/server/MsgSetName_s';
|
|
|
+import { MsgUserFight_s } from './user/server/MsgUserFight_s';
|
|
|
+
|
|
|
+export interface ServiceType {
|
|
|
+ api: {
|
|
|
+ "admin/addBuMa": {
|
|
|
+ req: ReqaddBuMa,
|
|
|
+ res: ResaddBuMa
|
|
|
+ },
|
|
|
+ "admin/addCode": {
|
|
|
+ req: ReqaddCode,
|
|
|
+ res: ResaddCode
|
|
|
+ },
|
|
|
+ "admin/addMail": {
|
|
|
+ req: ReqaddMail,
|
|
|
+ res: ResaddMail
|
|
|
+ },
|
|
|
+ "admin/cacheVer": {
|
|
|
+ req: ReqcacheVer,
|
|
|
+ res: RescacheVer
|
|
|
+ },
|
|
|
+ "admin/deleteCode": {
|
|
|
+ req: ReqdeleteCode,
|
|
|
+ res: ResdeleteCode
|
|
|
+ },
|
|
|
+ "admin/deleteMail": {
|
|
|
+ req: ReqdeleteMail,
|
|
|
+ res: ResdeleteMail
|
|
|
+ },
|
|
|
+ "admin/deleteQuFu": {
|
|
|
+ req: ReqdeleteQuFu,
|
|
|
+ res: ResdeleteQuFu
|
|
|
+ },
|
|
|
+ "admin/deleteSetting": {
|
|
|
+ req: ReqdeleteSetting,
|
|
|
+ res: ResdeleteSetting
|
|
|
+ },
|
|
|
+ "admin/getCode": {
|
|
|
+ req: ReqgetCode,
|
|
|
+ res: ResgetCode
|
|
|
+ },
|
|
|
+ "admin/getCodeMa": {
|
|
|
+ req: ReqgetCodeMa,
|
|
|
+ res: ResgetCodeMa
|
|
|
+ },
|
|
|
+ "admin/getMail": {
|
|
|
+ req: ReqgetMail,
|
|
|
+ res: ResgetMail
|
|
|
+ },
|
|
|
+ "admin/getNeed": {
|
|
|
+ req: ReqgetNeed,
|
|
|
+ res: ResgetNeed
|
|
|
+ },
|
|
|
+ "admin/getQuFu": {
|
|
|
+ req: ReqgetQuFu,
|
|
|
+ res: ResgetQuFu
|
|
|
+ },
|
|
|
+ "admin/getSetting": {
|
|
|
+ req: ReqgetSetting,
|
|
|
+ res: ResgetSetting
|
|
|
+ },
|
|
|
+ "admin/getVer": {
|
|
|
+ req: ReqgetVer,
|
|
|
+ res: ResgetVer
|
|
|
+ },
|
|
|
+ "admin/huodongFind": {
|
|
|
+ req: ReqhuodongFind,
|
|
|
+ res: ReshuodongFind
|
|
|
+ },
|
|
|
+ "admin/updateMail": {
|
|
|
+ req: RequpdateMail,
|
|
|
+ res: ResupdateMail
|
|
|
+ },
|
|
|
+ "admin/updateQuFu": {
|
|
|
+ req: RequpdateQuFu,
|
|
|
+ res: ResupdateQuFu
|
|
|
+ },
|
|
|
+ "admin/updateSetting": {
|
|
|
+ req: RequpdateSetting,
|
|
|
+ res: ResupdateSetting
|
|
|
+ },
|
|
|
+ "admin/xaizai": {
|
|
|
+ req: Reqxaizai,
|
|
|
+ res: Resxaizai
|
|
|
+ },
|
|
|
+ "hc/HcMerge": {
|
|
|
+ req: ReqHcMerge,
|
|
|
+ res: ResHcMerge
|
|
|
+ },
|
|
|
+ "plat/PlatLogin": {
|
|
|
+ req: ReqPlatLogin,
|
|
|
+ res: ResPlatLogin
|
|
|
+ },
|
|
|
+ "player/PlayerLogin": {
|
|
|
+ req: ReqPlayerLogin,
|
|
|
+ res: ResPlayerLogin
|
|
|
+ },
|
|
|
+ "user/UserLogin": {
|
|
|
+ req: ReqUserLogin,
|
|
|
+ res: ResUserLogin
|
|
|
+ }
|
|
|
+ },
|
|
|
+ msg: {
|
|
|
+ "common/Items": MsgItems,
|
|
|
+ "common/Message": MsgMessage,
|
|
|
+ "eps/client/EpsInfo_c": MsgEpsInfo_c,
|
|
|
+ "eps/server/EpsChange_s": MsgEpsChange_s,
|
|
|
+ "eps/server/EpsInfo_s": MsgEpsInfo_s,
|
|
|
+ "hc/client/HcInfo_c": MsgHcInfo_c,
|
|
|
+ "hc/server/HcInfo_s": MsgHcInfo_s,
|
|
|
+ "item/client/ItemInfo_c": MsgItemInfo_c,
|
|
|
+ "item/server/ItemChange_s": MsgItemChange_s,
|
|
|
+ "item/server/ItemInfo_s": MsgItemInfo_s,
|
|
|
+ "user/client/SetName_c": MsgSetName_c,
|
|
|
+ "user/client/UserFight_c": MsgUserFight_c,
|
|
|
+ "user/server/SetName_s": MsgSetName_s,
|
|
|
+ "user/server/UserFight_s": MsgUserFight_s
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+export const serviceProto: ServiceProto<ServiceType> = {
|
|
|
+ "version": 38,
|
|
|
+ "services": [
|
|
|
+ {
|
|
|
+ "id": 39,
|
|
|
+ "name": "admin/addBuMa",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 38,
|
|
|
+ "name": "admin/addCode",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 42,
|
|
|
+ "name": "admin/addMail",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 35,
|
|
|
+ "name": "admin/cacheVer",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 40,
|
|
|
+ "name": "admin/deleteCode",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 43,
|
|
|
+ "name": "admin/deleteMail",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 5,
|
|
|
+ "name": "admin/deleteQuFu",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 23,
|
|
|
+ "name": "admin/deleteSetting",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 36,
|
|
|
+ "name": "admin/getCode",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 37,
|
|
|
+ "name": "admin/getCodeMa",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 45,
|
|
|
+ "name": "admin/getMail",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 6,
|
|
|
+ "name": "admin/getNeed",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 7,
|
|
|
+ "name": "admin/getQuFu",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 25,
|
|
|
+ "name": "admin/getSetting",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 26,
|
|
|
+ "name": "admin/getVer",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 46,
|
|
|
+ "name": "admin/huodongFind",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 44,
|
|
|
+ "name": "admin/updateMail",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 8,
|
|
|
+ "name": "admin/updateQuFu",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 31,
|
|
|
+ "name": "admin/updateSetting",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 41,
|
|
|
+ "name": "admin/xaizai",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "admin"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 18,
|
|
|
+ "name": "common/Items",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 19,
|
|
|
+ "name": "common/Message",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 49,
|
|
|
+ "name": "eps/client/EpsInfo_c",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 50,
|
|
|
+ "name": "eps/server/EpsChange_s",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 51,
|
|
|
+ "name": "eps/server/EpsInfo_s",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 52,
|
|
|
+ "name": "hc/client/HcInfo_c",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 64,
|
|
|
+ "name": "hc/HcMerge",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "ws"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 53,
|
|
|
+ "name": "hc/server/HcInfo_s",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 54,
|
|
|
+ "name": "item/client/ItemInfo_c",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 55,
|
|
|
+ "name": "item/server/ItemChange_s",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 56,
|
|
|
+ "name": "item/server/ItemInfo_s",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 57,
|
|
|
+ "name": "plat/PlatLogin",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "http"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 58,
|
|
|
+ "name": "player/PlayerLogin",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "http"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 59,
|
|
|
+ "name": "user/client/SetName_c",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 60,
|
|
|
+ "name": "user/client/UserFight_c",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 61,
|
|
|
+ "name": "user/UserLogin",
|
|
|
+ "type": "api",
|
|
|
+ "conf": {
|
|
|
+ "connet": "ws"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 62,
|
|
|
+ "name": "user/server/SetName_s",
|
|
|
+ "type": "msg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 63,
|
|
|
+ "name": "user/server/UserFight_s",
|
|
|
+ "type": "msg"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "types": {
|
|
|
+ "admin/PtladdBuMa/ReqaddBuMa": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "id",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "addCount",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtladdBuMa/ResaddBuMa": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtladdCode/ReqaddCode": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "param",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtladdCode/ResaddCode": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtladdMail/ReqaddMail": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "params",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtladdMail/ResaddMail": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlcacheVer/ReqcacheVer": {
|
|
|
+ "type": "Interface"
|
|
|
+ },
|
|
|
+ "admin/PtlcacheVer/RescacheVer": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtldeleteCode/ReqdeleteCode": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "id",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtldeleteCode/ResdeleteCode": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtldeleteMail/ReqdeleteMail": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "id",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtldeleteMail/ResdeleteMail": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtldeleteQuFu/ReqdeleteQuFu": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "sid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtldeleteQuFu/ResdeleteQuFu": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtldeleteSetting/ReqdeleteSetting": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "key",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtldeleteSetting/ResdeleteSetting": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlgetCode/ReqgetCode": {
|
|
|
+ "type": "Interface"
|
|
|
+ },
|
|
|
+ "admin/PtlgetCode/ResgetCode": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlgetCodeMa/ReqgetCodeMa": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "id",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlgetCodeMa/ResgetCodeMa": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlgetMail/ReqgetMail": {
|
|
|
+ "type": "Interface"
|
|
|
+ },
|
|
|
+ "admin/PtlgetMail/ResgetMail": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlgetNeed/ReqgetNeed": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "stime",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "timeInterval",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlgetNeed/ResgetNeed": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlgetQuFu/ReqgetQuFu": {
|
|
|
+ "type": "Interface"
|
|
|
+ },
|
|
|
+ "admin/PtlgetQuFu/ResgetQuFu": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlgetSetting/ReqgetSetting": {
|
|
|
+ "type": "Interface"
|
|
|
+ },
|
|
|
+ "admin/PtlgetSetting/ResgetSetting": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlgetVer/ReqgetVer": {
|
|
|
+ "type": "Interface"
|
|
|
+ },
|
|
|
+ "admin/PtlgetVer/ResgetVer": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlhuodongFind/ReqhuodongFind": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "key",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "hdcid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlhuodongFind/ReshuodongFind": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlupdateMail/RequpdateMail": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "id",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "params",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlupdateMail/ResupdateMail": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlupdateQuFu/RequpdateQuFu": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "sid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "param",
|
|
|
+ "type": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlupdateQuFu/ResupdateQuFu": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlupdateSetting/RequpdateSetting": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "key",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "param",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/PtlupdateSetting/ResupdateSetting": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/Ptlxaizai/Reqxaizai": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "id",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "admin/Ptlxaizai/Resxaizai": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "order10Back",
|
|
|
+ "type": {
|
|
|
+ "type": "Any"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "common/MsgItems/MsgItems": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "items",
|
|
|
+ "type": {
|
|
|
+ "type": "Array",
|
|
|
+ "elementType": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "common/MsgMessage/MsgMessage": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "message",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "eps/client/MsgEpsInfo_c/MsgEpsInfo_c": {
|
|
|
+ "type": "Interface"
|
|
|
+ },
|
|
|
+ "eps/server/MsgEpsChange_s/MsgEpsChange_s": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "eps/server/MsgEpsInfo_s/MsgEpsInfo_s": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "hc/client/MsgHcInfo_c/MsgHcInfo_c": {
|
|
|
+ "type": "Interface"
|
|
|
+ },
|
|
|
+ "hc/PtlHcMerge/ReqHcMerge": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "gzid1",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "gzid2",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "hc/PtlHcMerge/ResHcMerge": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "hc/server/MsgHcInfo_s/HcInfoGeziInfo"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "hc/server/MsgHcInfo_s/HcInfoGeziInfo": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "type",
|
|
|
+ "type": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "hc/server/MsgHcInfo_s/HcType"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "unlock",
|
|
|
+ "type": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "hc/server/MsgHcInfo_s/HcUnlock"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "correlationId",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "hc/server/MsgHcInfo_s/HcType": {
|
|
|
+ "type": "Enum",
|
|
|
+ "members": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "value": "0"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "value": "1"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "value": "2"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 3,
|
|
|
+ "value": "3"
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "hc/server/MsgHcInfo_s/HcUnlock": {
|
|
|
+ "type": "Enum",
|
|
|
+ "members": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "value": "on"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "value": "off"
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "hc/server/MsgHcInfo_s/MsgHcInfo_s": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "chapterId",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "tili",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "lastTime",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 3,
|
|
|
+ "name": "list",
|
|
|
+ "type": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "hc/server/MsgHcInfo_s/HcInfoList"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "hc/server/MsgHcInfo_s/HcInfoList": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "hc/server/MsgHcInfo_s/HcInfoGeziInfo"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "item/client/MsgItemInfo_c/MsgItemInfo_c": {
|
|
|
+ "type": "Interface"
|
|
|
+ },
|
|
|
+ "item/server/MsgItemChange_s/MsgItemChange_s": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "item/server/MsgItemInfo_s/MsgItemInfo_s": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "plat/PtlPlatLogin/ReqPlatLogin": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "pid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "param",
|
|
|
+ "type": {
|
|
|
+ "type": "Array",
|
|
|
+ "elementType": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "plat/PtlPlatLogin/ResPlatLogin": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "openId",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "token",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "player/PtlPlayerLogin/ReqPlayerLogin": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "pid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "openId",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "lang",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 3,
|
|
|
+ "name": "plat",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 4,
|
|
|
+ "name": "device",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 5,
|
|
|
+ "name": "parms",
|
|
|
+ "type": {
|
|
|
+ "type": "Array",
|
|
|
+ "elementType": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "player/PtlPlayerLogin/ResPlayerLogin": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "uid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "sid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "list",
|
|
|
+ "type": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "player/PtlPlayerLogin/ResLoginList"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 3,
|
|
|
+ "name": "token",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 4,
|
|
|
+ "name": "qufuList",
|
|
|
+ "type": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "player/PtlPlayerLogin/qufuInfo"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 5,
|
|
|
+ "name": "wsUrl",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "player/PtlPlayerLogin/ResLoginList": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "uuid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "name",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "level",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 3,
|
|
|
+ "name": "lastlogin",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "player/PtlPlayerLogin/qufuInfo": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "sid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "name",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "sName",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 3,
|
|
|
+ "name": "openAt",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 4,
|
|
|
+ "name": "status",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 5,
|
|
|
+ "name": "heid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 6,
|
|
|
+ "name": "suofu",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 7,
|
|
|
+ "name": "skin",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "user/client/MsgSetName_c/MsgSetName_c": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "name",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "user/client/MsgUserFight_c/MsgUserFight_c": {
|
|
|
+ "type": "Interface"
|
|
|
+ },
|
|
|
+ "user/PtlUserLogin/ReqUserLogin": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "sid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "uid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "token",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "user/PtlUserLogin/ResUserLogin": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "uuid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "sid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "name",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 3,
|
|
|
+ "name": "head",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 4,
|
|
|
+ "name": "wxhead",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 5,
|
|
|
+ "name": "sex",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 6,
|
|
|
+ "name": "level",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 7,
|
|
|
+ "name": "regtime",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 8,
|
|
|
+ "name": "loginTime",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 9,
|
|
|
+ "name": "lastlogin",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 10,
|
|
|
+ "name": "lang",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 11,
|
|
|
+ "name": "iscz",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 12,
|
|
|
+ "name": "rmbcz",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 13,
|
|
|
+ "name": "power",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "user/server/MsgSetName_s/MsgSetName_s": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "name",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "user/server/MsgUserFight_s/MsgUserFight_s": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "fightStart",
|
|
|
+ "type": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "user/server/MsgUserFight_s/FightStart"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "win",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "log",
|
|
|
+ "type": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Array",
|
|
|
+ "elementType": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "user/server/MsgUserFight_s/fightLogOne"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "user/server/MsgUserFight_s/FightStart": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "from",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "seed",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "teams",
|
|
|
+ "type": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "user/server/MsgUserFight_s/FightTeam"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "user/server/MsgUserFight_s/FightTeam": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "fid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "eps",
|
|
|
+ "type": {
|
|
|
+ "type": "Interface",
|
|
|
+ "indexSignature": {
|
|
|
+ "keyType": "String",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "user/server/MsgUserFight_s/fightLogOne": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "aType",
|
|
|
+ "type": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "user/server/MsgUserFight_s/ActionType"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "atker",
|
|
|
+ "type": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "user/server/MsgUserFight_s/fightLogOneData"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "target",
|
|
|
+ "type": {
|
|
|
+ "type": "Array",
|
|
|
+ "elementType": {
|
|
|
+ "type": "Reference",
|
|
|
+ "target": "user/server/MsgUserFight_s/fightLogOneData"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "user/server/MsgUserFight_s/ActionType": {
|
|
|
+ "type": "Enum",
|
|
|
+ "members": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "value": "wu"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "value": "0"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "value": "1"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 3,
|
|
|
+ "value": "2"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 4,
|
|
|
+ "value": "3"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 5,
|
|
|
+ "value": "999"
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "user/server/MsgUserFight_s/fightLogOneData": {
|
|
|
+ "type": "Interface",
|
|
|
+ "properties": [
|
|
|
+ {
|
|
|
+ "id": 0,
|
|
|
+ "name": "iid",
|
|
|
+ "type": {
|
|
|
+ "type": "String"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 1,
|
|
|
+ "name": "hp",
|
|
|
+ "type": {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 2,
|
|
|
+ "name": "buff",
|
|
|
+ "type": {
|
|
|
+ "type": "Array",
|
|
|
+ "elementType": {
|
|
|
+ "type": "Tuple",
|
|
|
+ "elementTypes": [
|
|
|
+ {
|
|
|
+ "type": "String"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": 3,
|
|
|
+ "name": "effect",
|
|
|
+ "type": {
|
|
|
+ "type": "Array",
|
|
|
+ "elementType": {
|
|
|
+ "type": "Tuple",
|
|
|
+ "elementTypes": [
|
|
|
+ {
|
|
|
+ "type": "String"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "type": "Number"
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|