|
@@ -30,15 +30,21 @@ import { ReqHcInfo, ResHcInfo } from './hc/PtlHcInfo';
|
|
import { ReqHcMerge, ResHcMerge } from './hc/PtlHcMerge';
|
|
import { ReqHcMerge, ResHcMerge } from './hc/PtlHcMerge';
|
|
import { ReqItemInfo, ResItemInfo } from './item/PtlItemInfo';
|
|
import { ReqItemInfo, ResItemInfo } from './item/PtlItemInfo';
|
|
import { MsgItemChange_s } from './item/server/MsgItemChange_s';
|
|
import { MsgItemChange_s } from './item/server/MsgItemChange_s';
|
|
|
|
+import { ReqMailDelAll, ResMailDelAll } from './mail/PtlMailDelAll';
|
|
|
|
+import { ReqMailDelOne, ResMailDelOne } from './mail/PtlMailDelOne';
|
|
import { ReqMailInfo, ResMailInfo } from './mail/PtlMailInfo';
|
|
import { ReqMailInfo, ResMailInfo } from './mail/PtlMailInfo';
|
|
|
|
+import { ReqMailRwdAll, ResMailRwdAll } from './mail/PtlMailRwdAll';
|
|
|
|
+import { ReqMailRwdOne, ResMailRwdOne } from './mail/PtlMailRwdOne';
|
|
import { MsgMailNew_s } from './mail/server/MsgMailNew_s';
|
|
import { MsgMailNew_s } from './mail/server/MsgMailNew_s';
|
|
import { ReqPlatLogin, ResPlatLogin } from './plat/PtlPlatLogin';
|
|
import { ReqPlatLogin, ResPlatLogin } from './plat/PtlPlatLogin';
|
|
import { ReqPlayerLogin, ResPlayerLogin } from './player/PtlPlayerLogin';
|
|
import { ReqPlayerLogin, ResPlayerLogin } from './player/PtlPlayerLogin';
|
|
import { ReqTaskInfo, ResTaskInfo } from './task/PtlTaskInfo';
|
|
import { ReqTaskInfo, ResTaskInfo } from './task/PtlTaskInfo';
|
|
import { ReqTaskRwd, ResTaskRwd } from './task/PtlTaskRwd';
|
|
import { ReqTaskRwd, ResTaskRwd } from './task/PtlTaskRwd';
|
|
|
|
+import { MsgTaskCons_s } from './task/server/MsgTaskCons_s';
|
|
import { ReqUserFight, ResUserFight } from './user/PtlUserFight';
|
|
import { ReqUserFight, ResUserFight } from './user/PtlUserFight';
|
|
import { ReqUserLogin, ResUserLogin } from './user/PtlUserLogin';
|
|
import { ReqUserLogin, ResUserLogin } from './user/PtlUserLogin';
|
|
import { ReqUserSetName, ResUserSetName } from './user/PtlUserSetName';
|
|
import { ReqUserSetName, ResUserSetName } from './user/PtlUserSetName';
|
|
|
|
+import { ReqUserUseCode, ResUserUseCode } from './user/PtlUserUseCode';
|
|
import { MsgUserUplevel_s } from './user/server/MsgUserUplevel_s';
|
|
import { MsgUserUplevel_s } from './user/server/MsgUserUplevel_s';
|
|
|
|
|
|
export interface ServiceType {
|
|
export interface ServiceType {
|
|
@@ -151,10 +157,26 @@ export interface ServiceType {
|
|
req: ReqItemInfo,
|
|
req: ReqItemInfo,
|
|
res: ResItemInfo
|
|
res: ResItemInfo
|
|
},
|
|
},
|
|
|
|
+ "mail/MailDelAll": {
|
|
|
|
+ req: ReqMailDelAll,
|
|
|
|
+ res: ResMailDelAll
|
|
|
|
+ },
|
|
|
|
+ "mail/MailDelOne": {
|
|
|
|
+ req: ReqMailDelOne,
|
|
|
|
+ res: ResMailDelOne
|
|
|
|
+ },
|
|
"mail/MailInfo": {
|
|
"mail/MailInfo": {
|
|
req: ReqMailInfo,
|
|
req: ReqMailInfo,
|
|
res: ResMailInfo
|
|
res: ResMailInfo
|
|
},
|
|
},
|
|
|
|
+ "mail/MailRwdAll": {
|
|
|
|
+ req: ReqMailRwdAll,
|
|
|
|
+ res: ResMailRwdAll
|
|
|
|
+ },
|
|
|
|
+ "mail/MailRwdOne": {
|
|
|
|
+ req: ReqMailRwdOne,
|
|
|
|
+ res: ResMailRwdOne
|
|
|
|
+ },
|
|
"plat/PlatLogin": {
|
|
"plat/PlatLogin": {
|
|
req: ReqPlatLogin,
|
|
req: ReqPlatLogin,
|
|
res: ResPlatLogin
|
|
res: ResPlatLogin
|
|
@@ -182,6 +204,10 @@ export interface ServiceType {
|
|
"user/UserSetName": {
|
|
"user/UserSetName": {
|
|
req: ReqUserSetName,
|
|
req: ReqUserSetName,
|
|
res: ResUserSetName
|
|
res: ResUserSetName
|
|
|
|
+ },
|
|
|
|
+ "user/UserUseCode": {
|
|
|
|
+ req: ReqUserUseCode,
|
|
|
|
+ res: ResUserUseCode
|
|
}
|
|
}
|
|
},
|
|
},
|
|
msg: {
|
|
msg: {
|
|
@@ -190,12 +216,13 @@ export interface ServiceType {
|
|
"eps/server/EpsChange_s": MsgEpsChange_s,
|
|
"eps/server/EpsChange_s": MsgEpsChange_s,
|
|
"item/server/ItemChange_s": MsgItemChange_s,
|
|
"item/server/ItemChange_s": MsgItemChange_s,
|
|
"mail/server/MailNew_s": MsgMailNew_s,
|
|
"mail/server/MailNew_s": MsgMailNew_s,
|
|
|
|
+ "task/server/TaskCons_s": MsgTaskCons_s,
|
|
"user/server/UserUplevel_s": MsgUserUplevel_s
|
|
"user/server/UserUplevel_s": MsgUserUplevel_s
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
export const serviceProto: ServiceProto<ServiceType> = {
|
|
export const serviceProto: ServiceProto<ServiceType> = {
|
|
- "version": 50,
|
|
|
|
|
|
+ "version": 53,
|
|
"services": [
|
|
"services": [
|
|
{
|
|
{
|
|
"id": 39,
|
|
"id": 39,
|
|
@@ -434,6 +461,22 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
"type": "msg"
|
|
"type": "msg"
|
|
},
|
|
},
|
|
{
|
|
{
|
|
|
|
+ "id": 79,
|
|
|
|
+ "name": "mail/MailDelAll",
|
|
|
|
+ "type": "api",
|
|
|
|
+ "conf": {
|
|
|
|
+ "connet": "ws"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 80,
|
|
|
|
+ "name": "mail/MailDelOne",
|
|
|
|
+ "type": "api",
|
|
|
|
+ "conf": {
|
|
|
|
+ "connet": "ws"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
"id": 77,
|
|
"id": 77,
|
|
"name": "mail/MailInfo",
|
|
"name": "mail/MailInfo",
|
|
"type": "api",
|
|
"type": "api",
|
|
@@ -442,6 +485,22 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{
|
|
{
|
|
|
|
+ "id": 81,
|
|
|
|
+ "name": "mail/MailRwdAll",
|
|
|
|
+ "type": "api",
|
|
|
|
+ "conf": {
|
|
|
|
+ "connet": "ws"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 82,
|
|
|
|
+ "name": "mail/MailRwdOne",
|
|
|
|
+ "type": "api",
|
|
|
|
+ "conf": {
|
|
|
|
+ "connet": "ws"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
"id": 78,
|
|
"id": 78,
|
|
"name": "mail/server/MailNew_s",
|
|
"name": "mail/server/MailNew_s",
|
|
"type": "msg"
|
|
"type": "msg"
|
|
@@ -479,6 +538,11 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{
|
|
{
|
|
|
|
+ "id": 83,
|
|
|
|
+ "name": "task/server/TaskCons_s",
|
|
|
|
+ "type": "msg"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
"id": 68,
|
|
"id": 68,
|
|
"name": "user/UserFight",
|
|
"name": "user/UserFight",
|
|
"type": "api",
|
|
"type": "api",
|
|
@@ -503,6 +567,14 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{
|
|
{
|
|
|
|
+ "id": 84,
|
|
|
|
+ "name": "user/UserUseCode",
|
|
|
|
+ "type": "api",
|
|
|
|
+ "conf": {
|
|
|
|
+ "connet": "ws"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
"id": 73,
|
|
"id": 73,
|
|
"name": "user/server/UserUplevel_s",
|
|
"name": "user/server/UserUplevel_s",
|
|
"type": "msg"
|
|
"type": "msg"
|
|
@@ -1195,10 +1267,6 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
"value": 0
|
|
"value": 0
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- "id": 1,
|
|
|
|
- "value": 1
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
"id": 2,
|
|
"id": 2,
|
|
"value": 2
|
|
"value": 2
|
|
},
|
|
},
|
|
@@ -1207,6 +1275,10 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
"value": 3
|
|
"value": 3
|
|
},
|
|
},
|
|
{
|
|
{
|
|
|
|
+ "id": 5,
|
|
|
|
+ "value": 50
|
|
|
|
+ },
|
|
|
|
+ {
|
|
"id": 4,
|
|
"id": 4,
|
|
"value": 4
|
|
"value": 4
|
|
}
|
|
}
|
|
@@ -1275,10 +1347,10 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- "mail/PtlMailInfo/ReqMailInfo": {
|
|
|
|
|
|
+ "mail/PtlMailDelAll/ReqMailDelAll": {
|
|
"type": "Interface"
|
|
"type": "Interface"
|
|
},
|
|
},
|
|
- "mail/PtlMailInfo/ResMailInfo": {
|
|
|
|
|
|
+ "mail/PtlMailDelAll/ResMailDelAll": {
|
|
"type": "Interface",
|
|
"type": "Interface",
|
|
"indexSignature": {
|
|
"indexSignature": {
|
|
"keyType": "String",
|
|
"keyType": "String",
|
|
@@ -1287,59 +1359,168 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
"properties": [
|
|
"properties": [
|
|
{
|
|
{
|
|
"id": 0,
|
|
"id": 0,
|
|
- "name": "id",
|
|
|
|
- "type": {
|
|
|
|
- "type": "String"
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- "id": 1,
|
|
|
|
- "name": "title",
|
|
|
|
- "type": {
|
|
|
|
- "type": "String"
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- "id": 2,
|
|
|
|
- "name": "content",
|
|
|
|
- "type": {
|
|
|
|
- "type": "String"
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- "id": 3,
|
|
|
|
- "name": "items",
|
|
|
|
|
|
+ "name": "ets",
|
|
"type": {
|
|
"type": {
|
|
- "type": "Array",
|
|
|
|
- "elementType": {
|
|
|
|
- "type": "Number"
|
|
|
|
- }
|
|
|
|
|
|
+ "type": "Number"
|
|
}
|
|
}
|
|
- },
|
|
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailDelOne/ReqMailDelOne": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
|
|
+ {
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "id",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailDelOne/ResMailDelOne": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "indexSignature": {
|
|
|
|
+ "keyType": "String",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
{
|
|
{
|
|
- "id": 4,
|
|
|
|
- "name": "fts",
|
|
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "ets",
|
|
"type": {
|
|
"type": {
|
|
"type": "Number"
|
|
"type": "Number"
|
|
}
|
|
}
|
|
- },
|
|
|
|
- {
|
|
|
|
- "id": 5,
|
|
|
|
- "name": "rts",
|
|
|
|
- "type": {
|
|
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailInfo/ReqMailInfo": {
|
|
|
|
+ "type": "Interface"
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailInfo/ResMailInfo": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "indexSignature": {
|
|
|
|
+ "keyType": "String",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Reference",
|
|
|
|
+ "target": "mail/PtlMailInfo/MailInfo"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailInfo/MailInfo": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
|
|
+ {
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "id",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 1,
|
|
|
|
+ "name": "title",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 2,
|
|
|
|
+ "name": "content",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 3,
|
|
|
|
+ "name": "items",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Array",
|
|
|
|
+ "elementType": {
|
|
|
|
+ "type": "Array",
|
|
|
|
+ "elementType": {
|
|
"type": "Number"
|
|
"type": "Number"
|
|
}
|
|
}
|
|
- },
|
|
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 4,
|
|
|
|
+ "name": "fts",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 5,
|
|
|
|
+ "name": "rts",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 6,
|
|
|
|
+ "name": "ets",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 7,
|
|
|
|
+ "name": "dts",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailRwdAll/ReqMailRwdAll": {
|
|
|
|
+ "type": "Interface"
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailRwdAll/ResMailRwdAll": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "indexSignature": {
|
|
|
|
+ "keyType": "String",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
{
|
|
{
|
|
- "id": 6,
|
|
|
|
- "name": "ets",
|
|
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "rts",
|
|
"type": {
|
|
"type": {
|
|
"type": "Number"
|
|
"type": "Number"
|
|
}
|
|
}
|
|
- },
|
|
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailRwdOne/ReqMailRwdOne": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
|
|
+ {
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "id",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailRwdOne/ResMailRwdOne": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "indexSignature": {
|
|
|
|
+ "keyType": "String",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
{
|
|
{
|
|
- "id": 7,
|
|
|
|
- "name": "dts",
|
|
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "rts",
|
|
"type": {
|
|
"type": {
|
|
"type": "Number"
|
|
"type": "Number"
|
|
}
|
|
}
|
|
@@ -1349,7 +1530,14 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
"mail/server/MsgMailNew_s/MsgMailNew_s": {
|
|
"mail/server/MsgMailNew_s/MsgMailNew_s": {
|
|
- "type": "Interface"
|
|
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "indexSignature": {
|
|
|
|
+ "keyType": "String",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Reference",
|
|
|
|
+ "target": "mail/PtlMailInfo/MailInfo"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
},
|
|
},
|
|
"plat/PtlPlatLogin/ReqPlatLogin": {
|
|
"plat/PtlPlatLogin/ReqPlatLogin": {
|
|
"type": "Interface",
|
|
"type": "Interface",
|
|
@@ -1389,6 +1577,43 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
"type": {
|
|
"type": {
|
|
"type": "String"
|
|
"type": "String"
|
|
}
|
|
}
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 2,
|
|
|
|
+ "name": "noticeWais",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Array",
|
|
|
|
+ "elementType": {
|
|
|
|
+ "type": "Reference",
|
|
|
|
+ "target": "plat/PtlPlatLogin/Notices"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
|
|
+ "plat/PtlPlatLogin/Notices": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
|
|
+ {
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "type",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 1,
|
|
|
|
+ "name": "title",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 2,
|
|
|
|
+ "name": "content",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
}
|
|
}
|
|
]
|
|
]
|
|
},
|
|
},
|
|
@@ -1495,6 +1720,33 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{
|
|
{
|
|
|
|
+ "id": 6,
|
|
|
|
+ "name": "switch",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "indexSignature": {
|
|
|
|
+ "keyType": "String",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Any"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 7,
|
|
|
|
+ "name": "orderList",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "indexSignature": {
|
|
|
|
+ "keyType": "String",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Reference",
|
|
|
|
+ "target": "player/PtlPlayerLogin/OrderList"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
"id": 5,
|
|
"id": 5,
|
|
"name": "wsUrl",
|
|
"name": "wsUrl",
|
|
"type": {
|
|
"type": {
|
|
@@ -1597,6 +1849,46 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
]
|
|
]
|
|
},
|
|
},
|
|
|
|
+ "player/PtlPlayerLogin/OrderList": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
|
|
+ {
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "rmb",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 1,
|
|
|
|
+ "name": "money",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 2,
|
|
|
|
+ "name": "desc",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 3,
|
|
|
|
+ "name": "iid",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 4,
|
|
|
|
+ "name": "daibi",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
"task/PtlTaskInfo/ReqTaskInfo": {
|
|
"task/PtlTaskInfo/ReqTaskInfo": {
|
|
"type": "Interface"
|
|
"type": "Interface"
|
|
},
|
|
},
|
|
@@ -1641,6 +1933,18 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
]
|
|
]
|
|
},
|
|
},
|
|
|
|
+ "task/server/MsgTaskCons_s/MsgTaskCons_s": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
|
|
+ {
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "cons",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
"user/PtlUserFight/ReqUserFight": {
|
|
"user/PtlUserFight/ReqUserFight": {
|
|
"type": "Interface"
|
|
"type": "Interface"
|
|
},
|
|
},
|
|
@@ -2015,6 +2319,21 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
]
|
|
]
|
|
},
|
|
},
|
|
|
|
+ "user/PtlUserUseCode/ReqUserUseCode": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
|
|
+ {
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "key",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
|
|
+ "user/PtlUserUseCode/ResUserUseCode": {
|
|
|
|
+ "type": "Interface"
|
|
|
|
+ },
|
|
"user/server/MsgUserUplevel_s/MsgUserUplevel_s": {
|
|
"user/server/MsgUserUplevel_s/MsgUserUplevel_s": {
|
|
"type": "Interface",
|
|
"type": "Interface",
|
|
"properties": [
|
|
"properties": [
|