serviceProto.ts 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727
  1. import { ServiceProto } from 'tsrpc-proto';
  2. import { ReqaddBuMa, ResaddBuMa } from './admin/PtladdBuMa';
  3. import { ReqaddCode, ResaddCode } from './admin/PtladdCode';
  4. import { ReqaddMail, ResaddMail } from './admin/PtladdMail';
  5. import { ReqcacheVer, RescacheVer } from './admin/PtlcacheVer';
  6. import { ReqdeleteCode, ResdeleteCode } from './admin/PtldeleteCode';
  7. import { ReqdeleteMail, ResdeleteMail } from './admin/PtldeleteMail';
  8. import { ReqdeleteQuFu, ResdeleteQuFu } from './admin/PtldeleteQuFu';
  9. import { ReqdeleteSetting, ResdeleteSetting } from './admin/PtldeleteSetting';
  10. import { ReqgetCode, ResgetCode } from './admin/PtlgetCode';
  11. import { ReqgetCodeMa, ResgetCodeMa } from './admin/PtlgetCodeMa';
  12. import { ReqgetMail, ResgetMail } from './admin/PtlgetMail';
  13. import { ReqgetNeed, ResgetNeed } from './admin/PtlgetNeed';
  14. import { ReqgetQuFu, ResgetQuFu } from './admin/PtlgetQuFu';
  15. import { ReqgetSetting, ResgetSetting } from './admin/PtlgetSetting';
  16. import { ReqgetVer, ResgetVer } from './admin/PtlgetVer';
  17. import { ReqhuodongAdd, ReshuodongAdd } from './admin/PtlhuodongAdd';
  18. import { ReqhuodongDelete, ReshuodongDelete } from './admin/PtlhuodongDelete';
  19. import { ReqhuodongEdit, ReshuodongEdit } from './admin/PtlhuodongEdit';
  20. import { ReqhuodongFind, ReshuodongFind } from './admin/PtlhuodongFind';
  21. import { RequpdateMail, ResupdateMail } from './admin/PtlupdateMail';
  22. import { RequpdateQuFu, ResupdateQuFu } from './admin/PtlupdateQuFu';
  23. import { RequpdateSetting, ResupdateSetting } from './admin/PtlupdateSetting';
  24. import { Reqxiazai, Resxiazai } from './admin/Ptlxiazai';
  25. import { ReqChatSend, ResChatSend } from './chat/PtlChatSend';
  26. import { MsgChatNew_s } from './chat/server/MsgChatNew_s';
  27. import { MsgItems } from './common/MsgItems';
  28. import { MsgMessage } from './common/MsgMessage';
  29. import { ReqEpsInfo, ResEpsInfo } from './eps/PtlEpsInfo';
  30. import { MsgEpsChange_s } from './eps/server/MsgEpsChange_s';
  31. import { ReqFightHc, ResFightHc } from './fight/PtlFightHc';
  32. import { ReqFightTest, ResFightTest } from './fight/PtlFightTest';
  33. import { ReqHcEmit, ResHcEmit } from './hc/PtlHcEmit';
  34. import { ReqHcInfo, ResHcInfo } from './hc/PtlHcInfo';
  35. import { ReqHcMerge, ResHcMerge } from './hc/PtlHcMerge';
  36. import { ReqItemInfo, ResItemInfo } from './item/PtlItemInfo';
  37. import { MsgItemChange_s } from './item/server/MsgItemChange_s';
  38. import { ReqMailDelAll, ResMailDelAll } from './mail/PtlMailDelAll';
  39. import { ReqMailDelOne, ResMailDelOne } from './mail/PtlMailDelOne';
  40. import { ReqMailInfo, ResMailInfo } from './mail/PtlMailInfo';
  41. import { ReqMailRwdAll, ResMailRwdAll } from './mail/PtlMailRwdAll';
  42. import { ReqMailRwdOne, ResMailRwdOne } from './mail/PtlMailRwdOne';
  43. import { MsgMailNew_s } from './mail/server/MsgMailNew_s';
  44. import { ReqPlatLogin, ResPlatLogin } from './plat/PtlPlatLogin';
  45. import { ReqPlayerLogin, ResPlayerLogin } from './player/PtlPlayerLogin';
  46. import { ReqTaskInfo, ResTaskInfo } from './task/PtlTaskInfo';
  47. import { ReqTaskRwd, ResTaskRwd } from './task/PtlTaskRwd';
  48. import { MsgTaskCons_s } from './task/server/MsgTaskCons_s';
  49. import { ReqUserLogin, ResUserLogin } from './user/PtlUserLogin';
  50. import { ReqUserNotices, ResUserNotices } from './user/PtlUserNotices';
  51. import { ReqUserSetName, ResUserSetName } from './user/PtlUserSetName';
  52. import { ReqUserUseCode, ResUserUseCode } from './user/PtlUserUseCode';
  53. import { MsgUserUplevel_s } from './user/server/MsgUserUplevel_s';
  54. export interface ServiceType {
  55. api: {
  56. "admin/addBuMa": {
  57. req: ReqaddBuMa,
  58. res: ResaddBuMa
  59. },
  60. "admin/addCode": {
  61. req: ReqaddCode,
  62. res: ResaddCode
  63. },
  64. "admin/addMail": {
  65. req: ReqaddMail,
  66. res: ResaddMail
  67. },
  68. "admin/cacheVer": {
  69. req: ReqcacheVer,
  70. res: RescacheVer
  71. },
  72. "admin/deleteCode": {
  73. req: ReqdeleteCode,
  74. res: ResdeleteCode
  75. },
  76. "admin/deleteMail": {
  77. req: ReqdeleteMail,
  78. res: ResdeleteMail
  79. },
  80. "admin/deleteQuFu": {
  81. req: ReqdeleteQuFu,
  82. res: ResdeleteQuFu
  83. },
  84. "admin/deleteSetting": {
  85. req: ReqdeleteSetting,
  86. res: ResdeleteSetting
  87. },
  88. "admin/getCode": {
  89. req: ReqgetCode,
  90. res: ResgetCode
  91. },
  92. "admin/getCodeMa": {
  93. req: ReqgetCodeMa,
  94. res: ResgetCodeMa
  95. },
  96. "admin/getMail": {
  97. req: ReqgetMail,
  98. res: ResgetMail
  99. },
  100. "admin/getNeed": {
  101. req: ReqgetNeed,
  102. res: ResgetNeed
  103. },
  104. "admin/getQuFu": {
  105. req: ReqgetQuFu,
  106. res: ResgetQuFu
  107. },
  108. "admin/getSetting": {
  109. req: ReqgetSetting,
  110. res: ResgetSetting
  111. },
  112. "admin/getVer": {
  113. req: ReqgetVer,
  114. res: ResgetVer
  115. },
  116. "admin/huodongAdd": {
  117. req: ReqhuodongAdd,
  118. res: ReshuodongAdd
  119. },
  120. "admin/huodongDelete": {
  121. req: ReqhuodongDelete,
  122. res: ReshuodongDelete
  123. },
  124. "admin/huodongEdit": {
  125. req: ReqhuodongEdit,
  126. res: ReshuodongEdit
  127. },
  128. "admin/huodongFind": {
  129. req: ReqhuodongFind,
  130. res: ReshuodongFind
  131. },
  132. "admin/updateMail": {
  133. req: RequpdateMail,
  134. res: ResupdateMail
  135. },
  136. "admin/updateQuFu": {
  137. req: RequpdateQuFu,
  138. res: ResupdateQuFu
  139. },
  140. "admin/updateSetting": {
  141. req: RequpdateSetting,
  142. res: ResupdateSetting
  143. },
  144. "admin/xiazai": {
  145. req: Reqxiazai,
  146. res: Resxiazai
  147. },
  148. "chat/ChatSend": {
  149. req: ReqChatSend,
  150. res: ResChatSend
  151. },
  152. "eps/EpsInfo": {
  153. req: ReqEpsInfo,
  154. res: ResEpsInfo
  155. },
  156. "fight/FightHc": {
  157. req: ReqFightHc,
  158. res: ResFightHc
  159. },
  160. "fight/FightTest": {
  161. req: ReqFightTest,
  162. res: ResFightTest
  163. },
  164. "hc/HcEmit": {
  165. req: ReqHcEmit,
  166. res: ResHcEmit
  167. },
  168. "hc/HcInfo": {
  169. req: ReqHcInfo,
  170. res: ResHcInfo
  171. },
  172. "hc/HcMerge": {
  173. req: ReqHcMerge,
  174. res: ResHcMerge
  175. },
  176. "item/ItemInfo": {
  177. req: ReqItemInfo,
  178. res: ResItemInfo
  179. },
  180. "mail/MailDelAll": {
  181. req: ReqMailDelAll,
  182. res: ResMailDelAll
  183. },
  184. "mail/MailDelOne": {
  185. req: ReqMailDelOne,
  186. res: ResMailDelOne
  187. },
  188. "mail/MailInfo": {
  189. req: ReqMailInfo,
  190. res: ResMailInfo
  191. },
  192. "mail/MailRwdAll": {
  193. req: ReqMailRwdAll,
  194. res: ResMailRwdAll
  195. },
  196. "mail/MailRwdOne": {
  197. req: ReqMailRwdOne,
  198. res: ResMailRwdOne
  199. },
  200. "plat/PlatLogin": {
  201. req: ReqPlatLogin,
  202. res: ResPlatLogin
  203. },
  204. "player/PlayerLogin": {
  205. req: ReqPlayerLogin,
  206. res: ResPlayerLogin
  207. },
  208. "task/TaskInfo": {
  209. req: ReqTaskInfo,
  210. res: ResTaskInfo
  211. },
  212. "task/TaskRwd": {
  213. req: ReqTaskRwd,
  214. res: ResTaskRwd
  215. },
  216. "user/UserLogin": {
  217. req: ReqUserLogin,
  218. res: ResUserLogin
  219. },
  220. "user/UserNotices": {
  221. req: ReqUserNotices,
  222. res: ResUserNotices
  223. },
  224. "user/UserSetName": {
  225. req: ReqUserSetName,
  226. res: ResUserSetName
  227. },
  228. "user/UserUseCode": {
  229. req: ReqUserUseCode,
  230. res: ResUserUseCode
  231. }
  232. },
  233. msg: {
  234. "chat/server/ChatNew_s": MsgChatNew_s,
  235. "common/Items": MsgItems,
  236. "common/Message": MsgMessage,
  237. "eps/server/EpsChange_s": MsgEpsChange_s,
  238. "item/server/ItemChange_s": MsgItemChange_s,
  239. "mail/server/MailNew_s": MsgMailNew_s,
  240. "task/server/TaskCons_s": MsgTaskCons_s,
  241. "user/server/UserUplevel_s": MsgUserUplevel_s
  242. }
  243. }
  244. export const serviceProto: ServiceProto<ServiceType> = {
  245. "version": 62,
  246. "services": [
  247. {
  248. "id": 39,
  249. "name": "admin/addBuMa",
  250. "type": "api",
  251. "conf": {
  252. "connet": "admin"
  253. }
  254. },
  255. {
  256. "id": 38,
  257. "name": "admin/addCode",
  258. "type": "api",
  259. "conf": {
  260. "connet": "admin"
  261. }
  262. },
  263. {
  264. "id": 42,
  265. "name": "admin/addMail",
  266. "type": "api",
  267. "conf": {
  268. "connet": "admin"
  269. }
  270. },
  271. {
  272. "id": 35,
  273. "name": "admin/cacheVer",
  274. "type": "api",
  275. "conf": {
  276. "connet": "admin"
  277. }
  278. },
  279. {
  280. "id": 40,
  281. "name": "admin/deleteCode",
  282. "type": "api",
  283. "conf": {
  284. "connet": "admin"
  285. }
  286. },
  287. {
  288. "id": 43,
  289. "name": "admin/deleteMail",
  290. "type": "api",
  291. "conf": {
  292. "connet": "admin"
  293. }
  294. },
  295. {
  296. "id": 5,
  297. "name": "admin/deleteQuFu",
  298. "type": "api",
  299. "conf": {
  300. "connet": "admin"
  301. }
  302. },
  303. {
  304. "id": 23,
  305. "name": "admin/deleteSetting",
  306. "type": "api",
  307. "conf": {
  308. "connet": "admin"
  309. }
  310. },
  311. {
  312. "id": 36,
  313. "name": "admin/getCode",
  314. "type": "api",
  315. "conf": {
  316. "connet": "admin"
  317. }
  318. },
  319. {
  320. "id": 37,
  321. "name": "admin/getCodeMa",
  322. "type": "api",
  323. "conf": {
  324. "connet": "admin"
  325. }
  326. },
  327. {
  328. "id": 45,
  329. "name": "admin/getMail",
  330. "type": "api",
  331. "conf": {
  332. "connet": "admin"
  333. }
  334. },
  335. {
  336. "id": 6,
  337. "name": "admin/getNeed",
  338. "type": "api",
  339. "conf": {
  340. "connet": "admin"
  341. }
  342. },
  343. {
  344. "id": 7,
  345. "name": "admin/getQuFu",
  346. "type": "api",
  347. "conf": {
  348. "connet": "admin"
  349. }
  350. },
  351. {
  352. "id": 25,
  353. "name": "admin/getSetting",
  354. "type": "api",
  355. "conf": {
  356. "connet": "admin"
  357. }
  358. },
  359. {
  360. "id": 26,
  361. "name": "admin/getVer",
  362. "type": "api",
  363. "conf": {
  364. "connet": "admin"
  365. }
  366. },
  367. {
  368. "id": 70,
  369. "name": "admin/huodongAdd",
  370. "type": "api",
  371. "conf": {
  372. "connet": "admin"
  373. }
  374. },
  375. {
  376. "id": 71,
  377. "name": "admin/huodongDelete",
  378. "type": "api",
  379. "conf": {
  380. "connet": "admin"
  381. }
  382. },
  383. {
  384. "id": 72,
  385. "name": "admin/huodongEdit",
  386. "type": "api",
  387. "conf": {
  388. "connet": "admin"
  389. }
  390. },
  391. {
  392. "id": 46,
  393. "name": "admin/huodongFind",
  394. "type": "api",
  395. "conf": {
  396. "connet": "admin"
  397. }
  398. },
  399. {
  400. "id": 44,
  401. "name": "admin/updateMail",
  402. "type": "api",
  403. "conf": {
  404. "connet": "admin"
  405. }
  406. },
  407. {
  408. "id": 8,
  409. "name": "admin/updateQuFu",
  410. "type": "api",
  411. "conf": {
  412. "connet": "admin"
  413. }
  414. },
  415. {
  416. "id": 31,
  417. "name": "admin/updateSetting",
  418. "type": "api",
  419. "conf": {
  420. "connet": "admin"
  421. }
  422. },
  423. {
  424. "id": 41,
  425. "name": "admin/xiazai",
  426. "type": "api",
  427. "conf": {
  428. "connet": "admin"
  429. }
  430. },
  431. {
  432. "id": 88,
  433. "name": "chat/ChatSend",
  434. "type": "api",
  435. "conf": {
  436. "connet": "ws"
  437. }
  438. },
  439. {
  440. "id": 89,
  441. "name": "chat/server/ChatNew_s",
  442. "type": "msg"
  443. },
  444. {
  445. "id": 18,
  446. "name": "common/Items",
  447. "type": "msg"
  448. },
  449. {
  450. "id": 19,
  451. "name": "common/Message",
  452. "type": "msg"
  453. },
  454. {
  455. "id": 65,
  456. "name": "eps/EpsInfo",
  457. "type": "api",
  458. "conf": {
  459. "connet": "ws"
  460. }
  461. },
  462. {
  463. "id": 50,
  464. "name": "eps/server/EpsChange_s",
  465. "type": "msg"
  466. },
  467. {
  468. "id": 90,
  469. "name": "fight/FightHc",
  470. "type": "api",
  471. "conf": {
  472. "connet": "ws"
  473. }
  474. },
  475. {
  476. "id": 86,
  477. "name": "fight/FightTest",
  478. "type": "api",
  479. "conf": {
  480. "connet": "ws"
  481. }
  482. },
  483. {
  484. "id": 87,
  485. "name": "hc/HcEmit",
  486. "type": "api",
  487. "conf": {
  488. "connet": "ws"
  489. }
  490. },
  491. {
  492. "id": 66,
  493. "name": "hc/HcInfo",
  494. "type": "api",
  495. "conf": {
  496. "connet": "ws"
  497. }
  498. },
  499. {
  500. "id": 64,
  501. "name": "hc/HcMerge",
  502. "type": "api",
  503. "conf": {
  504. "connet": "ws"
  505. }
  506. },
  507. {
  508. "id": 67,
  509. "name": "item/ItemInfo",
  510. "type": "api",
  511. "conf": {
  512. "connet": "ws"
  513. }
  514. },
  515. {
  516. "id": 55,
  517. "name": "item/server/ItemChange_s",
  518. "type": "msg"
  519. },
  520. {
  521. "id": 79,
  522. "name": "mail/MailDelAll",
  523. "type": "api",
  524. "conf": {
  525. "connet": "ws"
  526. }
  527. },
  528. {
  529. "id": 80,
  530. "name": "mail/MailDelOne",
  531. "type": "api",
  532. "conf": {
  533. "connet": "ws"
  534. }
  535. },
  536. {
  537. "id": 77,
  538. "name": "mail/MailInfo",
  539. "type": "api",
  540. "conf": {
  541. "connet": "ws"
  542. }
  543. },
  544. {
  545. "id": 81,
  546. "name": "mail/MailRwdAll",
  547. "type": "api",
  548. "conf": {
  549. "connet": "ws"
  550. }
  551. },
  552. {
  553. "id": 82,
  554. "name": "mail/MailRwdOne",
  555. "type": "api",
  556. "conf": {
  557. "connet": "ws"
  558. }
  559. },
  560. {
  561. "id": 78,
  562. "name": "mail/server/MailNew_s",
  563. "type": "msg"
  564. },
  565. {
  566. "id": 57,
  567. "name": "plat/PlatLogin",
  568. "type": "api",
  569. "conf": {
  570. "connet": "http"
  571. }
  572. },
  573. {
  574. "id": 58,
  575. "name": "player/PlayerLogin",
  576. "type": "api",
  577. "conf": {
  578. "connet": "http"
  579. }
  580. },
  581. {
  582. "id": 74,
  583. "name": "task/TaskInfo",
  584. "type": "api",
  585. "conf": {
  586. "connet": "ws"
  587. }
  588. },
  589. {
  590. "id": 75,
  591. "name": "task/TaskRwd",
  592. "type": "api",
  593. "conf": {
  594. "connet": "ws"
  595. }
  596. },
  597. {
  598. "id": 83,
  599. "name": "task/server/TaskCons_s",
  600. "type": "msg"
  601. },
  602. {
  603. "id": 61,
  604. "name": "user/UserLogin",
  605. "type": "api",
  606. "conf": {
  607. "connet": "ws"
  608. }
  609. },
  610. {
  611. "id": 85,
  612. "name": "user/UserNotices",
  613. "type": "api",
  614. "conf": {
  615. "connet": "ws"
  616. }
  617. },
  618. {
  619. "id": 69,
  620. "name": "user/UserSetName",
  621. "type": "api",
  622. "conf": {
  623. "connet": "ws"
  624. }
  625. },
  626. {
  627. "id": 84,
  628. "name": "user/UserUseCode",
  629. "type": "api",
  630. "conf": {
  631. "connet": "ws"
  632. }
  633. },
  634. {
  635. "id": 73,
  636. "name": "user/server/UserUplevel_s",
  637. "type": "msg"
  638. }
  639. ],
  640. "types": {
  641. "admin/PtladdBuMa/ReqaddBuMa": {
  642. "type": "Interface",
  643. "properties": [
  644. {
  645. "id": 0,
  646. "name": "id",
  647. "type": {
  648. "type": "String"
  649. }
  650. },
  651. {
  652. "id": 1,
  653. "name": "addCount",
  654. "type": {
  655. "type": "Number"
  656. }
  657. }
  658. ]
  659. },
  660. "admin/PtladdBuMa/ResaddBuMa": {
  661. "type": "Interface",
  662. "properties": [
  663. {
  664. "id": 0,
  665. "name": "order10Back",
  666. "type": {
  667. "type": "Any"
  668. }
  669. }
  670. ]
  671. },
  672. "admin/PtladdCode/ReqaddCode": {
  673. "type": "Interface",
  674. "properties": [
  675. {
  676. "id": 1,
  677. "name": "param",
  678. "type": {
  679. "type": "Any"
  680. }
  681. }
  682. ]
  683. },
  684. "admin/PtladdCode/ResaddCode": {
  685. "type": "Interface",
  686. "properties": [
  687. {
  688. "id": 0,
  689. "name": "order10Back",
  690. "type": {
  691. "type": "Any"
  692. }
  693. }
  694. ]
  695. },
  696. "admin/PtladdMail/ReqaddMail": {
  697. "type": "Interface",
  698. "properties": [
  699. {
  700. "id": 0,
  701. "name": "params",
  702. "type": {
  703. "type": "Any"
  704. }
  705. }
  706. ]
  707. },
  708. "admin/PtladdMail/ResaddMail": {
  709. "type": "Interface",
  710. "properties": [
  711. {
  712. "id": 0,
  713. "name": "order10Back",
  714. "type": {
  715. "type": "Any"
  716. }
  717. }
  718. ]
  719. },
  720. "admin/PtlcacheVer/ReqcacheVer": {
  721. "type": "Interface"
  722. },
  723. "admin/PtlcacheVer/RescacheVer": {
  724. "type": "Interface",
  725. "properties": [
  726. {
  727. "id": 0,
  728. "name": "order10Back",
  729. "type": {
  730. "type": "Any"
  731. }
  732. }
  733. ]
  734. },
  735. "admin/PtldeleteCode/ReqdeleteCode": {
  736. "type": "Interface",
  737. "properties": [
  738. {
  739. "id": 0,
  740. "name": "id",
  741. "type": {
  742. "type": "String"
  743. }
  744. }
  745. ]
  746. },
  747. "admin/PtldeleteCode/ResdeleteCode": {
  748. "type": "Interface",
  749. "properties": [
  750. {
  751. "id": 0,
  752. "name": "order10Back",
  753. "type": {
  754. "type": "Any"
  755. }
  756. }
  757. ]
  758. },
  759. "admin/PtldeleteMail/ReqdeleteMail": {
  760. "type": "Interface",
  761. "properties": [
  762. {
  763. "id": 0,
  764. "name": "id",
  765. "type": {
  766. "type": "String"
  767. }
  768. }
  769. ]
  770. },
  771. "admin/PtldeleteMail/ResdeleteMail": {
  772. "type": "Interface",
  773. "properties": [
  774. {
  775. "id": 0,
  776. "name": "order10Back",
  777. "type": {
  778. "type": "Any"
  779. }
  780. }
  781. ]
  782. },
  783. "admin/PtldeleteQuFu/ReqdeleteQuFu": {
  784. "type": "Interface",
  785. "properties": [
  786. {
  787. "id": 0,
  788. "name": "sid",
  789. "type": {
  790. "type": "String"
  791. }
  792. }
  793. ]
  794. },
  795. "admin/PtldeleteQuFu/ResdeleteQuFu": {
  796. "type": "Interface",
  797. "properties": [
  798. {
  799. "id": 0,
  800. "name": "order10Back",
  801. "type": {
  802. "type": "Any"
  803. }
  804. }
  805. ]
  806. },
  807. "admin/PtldeleteSetting/ReqdeleteSetting": {
  808. "type": "Interface",
  809. "properties": [
  810. {
  811. "id": 0,
  812. "name": "key",
  813. "type": {
  814. "type": "String"
  815. }
  816. }
  817. ]
  818. },
  819. "admin/PtldeleteSetting/ResdeleteSetting": {
  820. "type": "Interface",
  821. "properties": [
  822. {
  823. "id": 0,
  824. "name": "order10Back",
  825. "type": {
  826. "type": "Any"
  827. }
  828. }
  829. ]
  830. },
  831. "admin/PtlgetCode/ReqgetCode": {
  832. "type": "Interface"
  833. },
  834. "admin/PtlgetCode/ResgetCode": {
  835. "type": "Interface",
  836. "properties": [
  837. {
  838. "id": 0,
  839. "name": "order10Back",
  840. "type": {
  841. "type": "Any"
  842. }
  843. }
  844. ]
  845. },
  846. "admin/PtlgetCodeMa/ReqgetCodeMa": {
  847. "type": "Interface",
  848. "properties": [
  849. {
  850. "id": 0,
  851. "name": "id",
  852. "type": {
  853. "type": "String"
  854. }
  855. }
  856. ]
  857. },
  858. "admin/PtlgetCodeMa/ResgetCodeMa": {
  859. "type": "Interface",
  860. "properties": [
  861. {
  862. "id": 0,
  863. "name": "order10Back",
  864. "type": {
  865. "type": "Any"
  866. }
  867. }
  868. ]
  869. },
  870. "admin/PtlgetMail/ReqgetMail": {
  871. "type": "Interface"
  872. },
  873. "admin/PtlgetMail/ResgetMail": {
  874. "type": "Interface",
  875. "properties": [
  876. {
  877. "id": 0,
  878. "name": "order10Back",
  879. "type": {
  880. "type": "Any"
  881. }
  882. }
  883. ]
  884. },
  885. "admin/PtlgetNeed/ReqgetNeed": {
  886. "type": "Interface",
  887. "properties": [
  888. {
  889. "id": 0,
  890. "name": "stime",
  891. "type": {
  892. "type": "Number"
  893. }
  894. },
  895. {
  896. "id": 1,
  897. "name": "timeInterval",
  898. "type": {
  899. "type": "Number"
  900. }
  901. }
  902. ]
  903. },
  904. "admin/PtlgetNeed/ResgetNeed": {
  905. "type": "Interface",
  906. "properties": [
  907. {
  908. "id": 0,
  909. "name": "order10Back",
  910. "type": {
  911. "type": "Any"
  912. }
  913. }
  914. ]
  915. },
  916. "admin/PtlgetQuFu/ReqgetQuFu": {
  917. "type": "Interface"
  918. },
  919. "admin/PtlgetQuFu/ResgetQuFu": {
  920. "type": "Interface",
  921. "properties": [
  922. {
  923. "id": 0,
  924. "name": "order10Back",
  925. "type": {
  926. "type": "Any"
  927. }
  928. }
  929. ]
  930. },
  931. "admin/PtlgetSetting/ReqgetSetting": {
  932. "type": "Interface"
  933. },
  934. "admin/PtlgetSetting/ResgetSetting": {
  935. "type": "Interface",
  936. "properties": [
  937. {
  938. "id": 2,
  939. "name": "order10Back",
  940. "type": {
  941. "type": "Any"
  942. }
  943. }
  944. ]
  945. },
  946. "admin/PtlgetVer/ReqgetVer": {
  947. "type": "Interface"
  948. },
  949. "admin/PtlgetVer/ResgetVer": {
  950. "type": "Interface",
  951. "properties": [
  952. {
  953. "id": 0,
  954. "name": "order10Back",
  955. "type": {
  956. "type": "Any"
  957. }
  958. }
  959. ]
  960. },
  961. "admin/PtlhuodongAdd/ReqhuodongAdd": {
  962. "type": "Interface",
  963. "properties": [
  964. {
  965. "id": 0,
  966. "name": "params",
  967. "type": {
  968. "type": "Any"
  969. }
  970. }
  971. ]
  972. },
  973. "admin/PtlhuodongAdd/ReshuodongAdd": {
  974. "type": "Interface",
  975. "properties": [
  976. {
  977. "id": 0,
  978. "name": "order10Back",
  979. "type": {
  980. "type": "Any"
  981. }
  982. }
  983. ]
  984. },
  985. "admin/PtlhuodongDelete/ReqhuodongDelete": {
  986. "type": "Interface",
  987. "properties": [
  988. {
  989. "id": 0,
  990. "name": "id",
  991. "type": {
  992. "type": "String"
  993. }
  994. }
  995. ]
  996. },
  997. "admin/PtlhuodongDelete/ReshuodongDelete": {
  998. "type": "Interface",
  999. "properties": [
  1000. {
  1001. "id": 0,
  1002. "name": "order10Back",
  1003. "type": {
  1004. "type": "Any"
  1005. }
  1006. }
  1007. ]
  1008. },
  1009. "admin/PtlhuodongEdit/ReqhuodongEdit": {
  1010. "type": "Interface",
  1011. "properties": [
  1012. {
  1013. "id": 0,
  1014. "name": "id",
  1015. "type": {
  1016. "type": "String"
  1017. }
  1018. },
  1019. {
  1020. "id": 1,
  1021. "name": "params",
  1022. "type": {
  1023. "type": "Any"
  1024. }
  1025. }
  1026. ]
  1027. },
  1028. "admin/PtlhuodongEdit/ReshuodongEdit": {
  1029. "type": "Interface",
  1030. "properties": [
  1031. {
  1032. "id": 0,
  1033. "name": "order10Back",
  1034. "type": {
  1035. "type": "Any"
  1036. }
  1037. }
  1038. ]
  1039. },
  1040. "admin/PtlhuodongFind/ReqhuodongFind": {
  1041. "type": "Interface",
  1042. "properties": [
  1043. {
  1044. "id": 0,
  1045. "name": "key",
  1046. "type": {
  1047. "type": "String"
  1048. },
  1049. "optional": true
  1050. },
  1051. {
  1052. "id": 1,
  1053. "name": "hdcid",
  1054. "type": {
  1055. "type": "String"
  1056. },
  1057. "optional": true
  1058. }
  1059. ]
  1060. },
  1061. "admin/PtlhuodongFind/ReshuodongFind": {
  1062. "type": "Interface",
  1063. "properties": [
  1064. {
  1065. "id": 0,
  1066. "name": "order10Back",
  1067. "type": {
  1068. "type": "Any"
  1069. }
  1070. }
  1071. ]
  1072. },
  1073. "admin/PtlupdateMail/RequpdateMail": {
  1074. "type": "Interface",
  1075. "properties": [
  1076. {
  1077. "id": 0,
  1078. "name": "id",
  1079. "type": {
  1080. "type": "String"
  1081. }
  1082. },
  1083. {
  1084. "id": 1,
  1085. "name": "params",
  1086. "type": {
  1087. "type": "Any"
  1088. }
  1089. }
  1090. ]
  1091. },
  1092. "admin/PtlupdateMail/ResupdateMail": {
  1093. "type": "Interface",
  1094. "properties": [
  1095. {
  1096. "id": 0,
  1097. "name": "order10Back",
  1098. "type": {
  1099. "type": "Any"
  1100. }
  1101. }
  1102. ]
  1103. },
  1104. "admin/PtlupdateQuFu/RequpdateQuFu": {
  1105. "type": "Interface",
  1106. "properties": [
  1107. {
  1108. "id": 0,
  1109. "name": "sid",
  1110. "type": {
  1111. "type": "String"
  1112. }
  1113. },
  1114. {
  1115. "id": 1,
  1116. "name": "param",
  1117. "type": {
  1118. "type": "Interface",
  1119. "indexSignature": {
  1120. "keyType": "String",
  1121. "type": {
  1122. "type": "Any"
  1123. }
  1124. }
  1125. }
  1126. }
  1127. ]
  1128. },
  1129. "admin/PtlupdateQuFu/ResupdateQuFu": {
  1130. "type": "Interface",
  1131. "properties": [
  1132. {
  1133. "id": 0,
  1134. "name": "order10Back",
  1135. "type": {
  1136. "type": "Any"
  1137. }
  1138. }
  1139. ]
  1140. },
  1141. "admin/PtlupdateSetting/RequpdateSetting": {
  1142. "type": "Interface",
  1143. "properties": [
  1144. {
  1145. "id": 0,
  1146. "name": "key",
  1147. "type": {
  1148. "type": "String"
  1149. }
  1150. },
  1151. {
  1152. "id": 1,
  1153. "name": "param",
  1154. "type": {
  1155. "type": "Any"
  1156. }
  1157. }
  1158. ]
  1159. },
  1160. "admin/PtlupdateSetting/ResupdateSetting": {
  1161. "type": "Interface",
  1162. "properties": [
  1163. {
  1164. "id": 0,
  1165. "name": "order10Back",
  1166. "type": {
  1167. "type": "Any"
  1168. }
  1169. }
  1170. ]
  1171. },
  1172. "admin/Ptlxiazai/Reqxiazai": {
  1173. "type": "Interface",
  1174. "properties": [
  1175. {
  1176. "id": 0,
  1177. "name": "id",
  1178. "type": {
  1179. "type": "String"
  1180. }
  1181. }
  1182. ]
  1183. },
  1184. "admin/Ptlxiazai/Resxiazai": {
  1185. "type": "Interface",
  1186. "properties": [
  1187. {
  1188. "id": 0,
  1189. "name": "order10Back",
  1190. "type": {
  1191. "type": "Any"
  1192. }
  1193. }
  1194. ]
  1195. },
  1196. "chat/PtlChatSend/ReqChatSend": {
  1197. "type": "Interface",
  1198. "properties": [
  1199. {
  1200. "id": 0,
  1201. "name": "type",
  1202. "type": {
  1203. "type": "Reference",
  1204. "target": "chat/PtlChatSend/ChatType"
  1205. }
  1206. },
  1207. {
  1208. "id": 1,
  1209. "name": "str",
  1210. "type": {
  1211. "type": "String"
  1212. }
  1213. }
  1214. ]
  1215. },
  1216. "chat/PtlChatSend/ChatType": {
  1217. "type": "Enum",
  1218. "members": [
  1219. {
  1220. "id": 0,
  1221. "value": "hefu"
  1222. }
  1223. ]
  1224. },
  1225. "chat/PtlChatSend/ResChatSend": {
  1226. "type": "Interface",
  1227. "indexSignature": {
  1228. "keyType": "String",
  1229. "type": {
  1230. "type": "Reference",
  1231. "target": "chat/PtlChatSend/ChatInfo"
  1232. }
  1233. }
  1234. },
  1235. "chat/PtlChatSend/ChatInfo": {
  1236. "type": "Interface",
  1237. "properties": [
  1238. {
  1239. "id": 0,
  1240. "name": "id",
  1241. "type": {
  1242. "type": "Number"
  1243. }
  1244. },
  1245. {
  1246. "id": 1,
  1247. "name": "type",
  1248. "type": {
  1249. "type": "Reference",
  1250. "target": "chat/PtlChatSend/ChatType"
  1251. }
  1252. },
  1253. {
  1254. "id": 2,
  1255. "name": "fuuid",
  1256. "type": {
  1257. "type": "String"
  1258. }
  1259. },
  1260. {
  1261. "id": 3,
  1262. "name": "fuser",
  1263. "type": {
  1264. "type": "Reference",
  1265. "target": "base/FUserInfo"
  1266. }
  1267. },
  1268. {
  1269. "id": 4,
  1270. "name": "msg",
  1271. "type": {
  1272. "type": "String"
  1273. }
  1274. },
  1275. {
  1276. "id": 5,
  1277. "name": "time",
  1278. "type": {
  1279. "type": "Number"
  1280. }
  1281. }
  1282. ]
  1283. },
  1284. "base/FUserInfo": {
  1285. "type": "Interface",
  1286. "properties": [
  1287. {
  1288. "id": 0,
  1289. "name": "uuid",
  1290. "type": {
  1291. "type": "String"
  1292. }
  1293. },
  1294. {
  1295. "id": 1,
  1296. "name": "sid",
  1297. "type": {
  1298. "type": "String"
  1299. }
  1300. },
  1301. {
  1302. "id": 2,
  1303. "name": "name",
  1304. "type": {
  1305. "type": "String"
  1306. }
  1307. },
  1308. {
  1309. "id": 3,
  1310. "name": "head",
  1311. "type": {
  1312. "type": "String"
  1313. }
  1314. },
  1315. {
  1316. "id": 4,
  1317. "name": "wxhead",
  1318. "type": {
  1319. "type": "String"
  1320. }
  1321. },
  1322. {
  1323. "id": 5,
  1324. "name": "sex",
  1325. "type": {
  1326. "type": "Number"
  1327. }
  1328. },
  1329. {
  1330. "id": 6,
  1331. "name": "level",
  1332. "type": {
  1333. "type": "Number"
  1334. }
  1335. },
  1336. {
  1337. "id": 7,
  1338. "name": "exp",
  1339. "type": {
  1340. "type": "Number"
  1341. }
  1342. },
  1343. {
  1344. "id": 8,
  1345. "name": "power",
  1346. "type": {
  1347. "type": "Number"
  1348. }
  1349. }
  1350. ]
  1351. },
  1352. "chat/server/MsgChatNew_s/MsgChatNew_s": {
  1353. "type": "Interface",
  1354. "indexSignature": {
  1355. "keyType": "String",
  1356. "type": {
  1357. "type": "Reference",
  1358. "target": "chat/PtlChatSend/ChatInfo"
  1359. }
  1360. }
  1361. },
  1362. "common/MsgItems/MsgItems": {
  1363. "type": "Interface",
  1364. "properties": [
  1365. {
  1366. "id": 0,
  1367. "name": "items",
  1368. "type": {
  1369. "type": "Array",
  1370. "elementType": {
  1371. "type": "Array",
  1372. "elementType": {
  1373. "type": "Number"
  1374. }
  1375. }
  1376. }
  1377. }
  1378. ]
  1379. },
  1380. "common/MsgMessage/MsgMessage": {
  1381. "type": "Interface",
  1382. "properties": [
  1383. {
  1384. "id": 0,
  1385. "name": "message",
  1386. "type": {
  1387. "type": "String"
  1388. }
  1389. }
  1390. ]
  1391. },
  1392. "eps/PtlEpsInfo/ReqEpsInfo": {
  1393. "type": "Interface"
  1394. },
  1395. "eps/PtlEpsInfo/ResEpsInfo": {
  1396. "type": "Interface",
  1397. "indexSignature": {
  1398. "keyType": "String",
  1399. "type": {
  1400. "type": "Number"
  1401. }
  1402. }
  1403. },
  1404. "eps/server/MsgEpsChange_s/MsgEpsChange_s": {
  1405. "type": "Interface",
  1406. "indexSignature": {
  1407. "keyType": "String",
  1408. "type": {
  1409. "type": "Number"
  1410. }
  1411. }
  1412. },
  1413. "fight/PtlFightHc/ReqFightHc": {
  1414. "type": "Interface",
  1415. "properties": [
  1416. {
  1417. "id": 0,
  1418. "name": "gzid",
  1419. "type": {
  1420. "type": "String"
  1421. }
  1422. }
  1423. ]
  1424. },
  1425. "fight/PtlFightHc/ResFightHc": {
  1426. "type": "Interface",
  1427. "extends": [
  1428. {
  1429. "id": 0,
  1430. "type": {
  1431. "type": "Reference",
  1432. "target": "base/FightBase"
  1433. }
  1434. }
  1435. ],
  1436. "properties": [
  1437. {
  1438. "id": 0,
  1439. "name": "list",
  1440. "type": {
  1441. "type": "Interface",
  1442. "indexSignature": {
  1443. "keyType": "String",
  1444. "type": {
  1445. "type": "Reference",
  1446. "target": "hc/PtlHcInfo/HcInfoGeziInfo"
  1447. }
  1448. }
  1449. }
  1450. }
  1451. ]
  1452. },
  1453. "base/FightBase": {
  1454. "type": "Interface",
  1455. "properties": [
  1456. {
  1457. "id": 0,
  1458. "name": "fightStart",
  1459. "type": {
  1460. "type": "Reference",
  1461. "target": "base/FightStart"
  1462. }
  1463. },
  1464. {
  1465. "id": 1,
  1466. "name": "win",
  1467. "type": {
  1468. "type": "Number"
  1469. }
  1470. },
  1471. {
  1472. "id": 2,
  1473. "name": "log",
  1474. "type": {
  1475. "type": "Interface",
  1476. "indexSignature": {
  1477. "keyType": "String",
  1478. "type": {
  1479. "type": "Array",
  1480. "elementType": {
  1481. "type": "Reference",
  1482. "target": "base/fightLogOne"
  1483. }
  1484. }
  1485. }
  1486. }
  1487. }
  1488. ]
  1489. },
  1490. "base/FightStart": {
  1491. "type": "Interface",
  1492. "properties": [
  1493. {
  1494. "id": 0,
  1495. "name": "from",
  1496. "type": {
  1497. "type": "String"
  1498. }
  1499. },
  1500. {
  1501. "id": 1,
  1502. "name": "seed",
  1503. "type": {
  1504. "type": "Number"
  1505. }
  1506. },
  1507. {
  1508. "id": 2,
  1509. "name": "teams",
  1510. "type": {
  1511. "type": "Interface",
  1512. "indexSignature": {
  1513. "keyType": "String",
  1514. "type": {
  1515. "type": "Reference",
  1516. "target": "base/FightTeam"
  1517. }
  1518. }
  1519. }
  1520. }
  1521. ]
  1522. },
  1523. "base/FightTeam": {
  1524. "type": "Interface",
  1525. "properties": [
  1526. {
  1527. "id": 0,
  1528. "name": "fid",
  1529. "type": {
  1530. "type": "String"
  1531. }
  1532. },
  1533. {
  1534. "id": 1,
  1535. "name": "seat",
  1536. "type": {
  1537. "type": "Number"
  1538. }
  1539. },
  1540. {
  1541. "id": 2,
  1542. "name": "eps",
  1543. "type": {
  1544. "type": "Interface",
  1545. "indexSignature": {
  1546. "keyType": "String",
  1547. "type": {
  1548. "type": "Number"
  1549. }
  1550. }
  1551. }
  1552. }
  1553. ]
  1554. },
  1555. "base/fightLogOne": {
  1556. "type": "Interface",
  1557. "properties": [
  1558. {
  1559. "id": 0,
  1560. "name": "aType",
  1561. "type": {
  1562. "type": "Reference",
  1563. "target": "base/ActionType"
  1564. }
  1565. },
  1566. {
  1567. "id": 1,
  1568. "name": "seat",
  1569. "type": {
  1570. "type": "Number"
  1571. }
  1572. },
  1573. {
  1574. "id": 2,
  1575. "name": "atker",
  1576. "type": {
  1577. "type": "Reference",
  1578. "target": "base/fightLogOneData"
  1579. }
  1580. },
  1581. {
  1582. "id": 3,
  1583. "name": "target",
  1584. "type": {
  1585. "type": "Array",
  1586. "elementType": {
  1587. "type": "Reference",
  1588. "target": "base/fightLogOneData"
  1589. }
  1590. }
  1591. }
  1592. ]
  1593. },
  1594. "base/ActionType": {
  1595. "type": "Enum",
  1596. "members": [
  1597. {
  1598. "id": 0,
  1599. "value": "wu"
  1600. },
  1601. {
  1602. "id": 1,
  1603. "value": "0"
  1604. },
  1605. {
  1606. "id": 2,
  1607. "value": "1"
  1608. },
  1609. {
  1610. "id": 3,
  1611. "value": "2"
  1612. },
  1613. {
  1614. "id": 4,
  1615. "value": "3"
  1616. },
  1617. {
  1618. "id": 5,
  1619. "value": "999"
  1620. }
  1621. ]
  1622. },
  1623. "base/fightLogOneData": {
  1624. "type": "Interface",
  1625. "properties": [
  1626. {
  1627. "id": 0,
  1628. "name": "iid",
  1629. "type": {
  1630. "type": "String"
  1631. }
  1632. },
  1633. {
  1634. "id": 1,
  1635. "name": "hp",
  1636. "type": {
  1637. "type": "Number"
  1638. }
  1639. },
  1640. {
  1641. "id": 2,
  1642. "name": "buff",
  1643. "type": {
  1644. "type": "Array",
  1645. "elementType": {
  1646. "type": "Tuple",
  1647. "elementTypes": [
  1648. {
  1649. "type": "String"
  1650. },
  1651. {
  1652. "type": "Number"
  1653. }
  1654. ]
  1655. }
  1656. }
  1657. },
  1658. {
  1659. "id": 3,
  1660. "name": "effect",
  1661. "type": {
  1662. "type": "Array",
  1663. "elementType": {
  1664. "type": "Tuple",
  1665. "elementTypes": [
  1666. {
  1667. "type": "String"
  1668. },
  1669. {
  1670. "type": "Number"
  1671. }
  1672. ]
  1673. }
  1674. }
  1675. }
  1676. ]
  1677. },
  1678. "hc/PtlHcInfo/HcInfoGeziInfo": {
  1679. "type": "Interface",
  1680. "properties": [
  1681. {
  1682. "id": 0,
  1683. "name": "type",
  1684. "type": {
  1685. "type": "Reference",
  1686. "target": "hc/PtlHcInfo/HcType"
  1687. }
  1688. },
  1689. {
  1690. "id": 1,
  1691. "name": "unlock",
  1692. "type": {
  1693. "type": "Reference",
  1694. "target": "hc/PtlHcInfo/HcUnlock"
  1695. }
  1696. },
  1697. {
  1698. "id": 2,
  1699. "name": "correlationId",
  1700. "type": {
  1701. "type": "Number"
  1702. }
  1703. }
  1704. ]
  1705. },
  1706. "hc/PtlHcInfo/HcType": {
  1707. "type": "Enum",
  1708. "members": [
  1709. {
  1710. "id": 0,
  1711. "value": 0
  1712. },
  1713. {
  1714. "id": 2,
  1715. "value": 2
  1716. },
  1717. {
  1718. "id": 3,
  1719. "value": 3
  1720. },
  1721. {
  1722. "id": 4,
  1723. "value": 4
  1724. },
  1725. {
  1726. "id": 5,
  1727. "value": 50
  1728. },
  1729. {
  1730. "id": 6,
  1731. "value": 51
  1732. }
  1733. ]
  1734. },
  1735. "hc/PtlHcInfo/HcUnlock": {
  1736. "type": "Enum",
  1737. "members": [
  1738. {
  1739. "id": 1,
  1740. "value": 1
  1741. },
  1742. {
  1743. "id": 0,
  1744. "value": 0
  1745. }
  1746. ]
  1747. },
  1748. "fight/PtlFightTest/ReqFightTest": {
  1749. "type": "Interface"
  1750. },
  1751. "fight/PtlFightTest/ResFightTest": {
  1752. "type": "Interface",
  1753. "extends": [
  1754. {
  1755. "id": 0,
  1756. "type": {
  1757. "type": "Reference",
  1758. "target": "base/FightBase"
  1759. }
  1760. }
  1761. ]
  1762. },
  1763. "hc/PtlHcEmit/ReqHcEmit": {
  1764. "type": "Interface",
  1765. "properties": [
  1766. {
  1767. "id": 0,
  1768. "name": "gzid",
  1769. "type": {
  1770. "type": "String"
  1771. }
  1772. }
  1773. ]
  1774. },
  1775. "hc/PtlHcEmit/ResHcEmit": {
  1776. "type": "Interface",
  1777. "indexSignature": {
  1778. "keyType": "String",
  1779. "type": {
  1780. "type": "Reference",
  1781. "target": "hc/PtlHcInfo/HcInfoGeziInfo"
  1782. }
  1783. }
  1784. },
  1785. "hc/PtlHcInfo/ReqHcInfo": {
  1786. "type": "Interface"
  1787. },
  1788. "hc/PtlHcInfo/ResHcInfo": {
  1789. "type": "Interface",
  1790. "properties": [
  1791. {
  1792. "id": 0,
  1793. "name": "chapterId",
  1794. "type": {
  1795. "type": "Number"
  1796. }
  1797. },
  1798. {
  1799. "id": 1,
  1800. "name": "tili",
  1801. "type": {
  1802. "type": "Number"
  1803. }
  1804. },
  1805. {
  1806. "id": 2,
  1807. "name": "lastTime",
  1808. "type": {
  1809. "type": "Number"
  1810. }
  1811. },
  1812. {
  1813. "id": 3,
  1814. "name": "list",
  1815. "type": {
  1816. "type": "Reference",
  1817. "target": "hc/PtlHcInfo/HcInfoList"
  1818. }
  1819. }
  1820. ]
  1821. },
  1822. "hc/PtlHcInfo/HcInfoList": {
  1823. "type": "Interface",
  1824. "indexSignature": {
  1825. "keyType": "String",
  1826. "type": {
  1827. "type": "Reference",
  1828. "target": "hc/PtlHcInfo/HcInfoGeziInfo"
  1829. }
  1830. }
  1831. },
  1832. "hc/PtlHcMerge/ReqHcMerge": {
  1833. "type": "Interface",
  1834. "properties": [
  1835. {
  1836. "id": 0,
  1837. "name": "gzid1",
  1838. "type": {
  1839. "type": "String"
  1840. }
  1841. },
  1842. {
  1843. "id": 1,
  1844. "name": "gzid2",
  1845. "type": {
  1846. "type": "String"
  1847. }
  1848. }
  1849. ]
  1850. },
  1851. "hc/PtlHcMerge/ResHcMerge": {
  1852. "type": "Interface",
  1853. "properties": [
  1854. {
  1855. "id": 0,
  1856. "name": "list",
  1857. "type": {
  1858. "type": "Interface",
  1859. "indexSignature": {
  1860. "keyType": "String",
  1861. "type": {
  1862. "type": "Reference",
  1863. "target": "hc/PtlHcInfo/HcInfoGeziInfo"
  1864. }
  1865. }
  1866. }
  1867. },
  1868. {
  1869. "id": 1,
  1870. "name": "items",
  1871. "type": {
  1872. "type": "Array",
  1873. "elementType": {
  1874. "type": "Array",
  1875. "elementType": {
  1876. "type": "Number"
  1877. }
  1878. }
  1879. }
  1880. }
  1881. ]
  1882. },
  1883. "item/PtlItemInfo/ReqItemInfo": {
  1884. "type": "Interface"
  1885. },
  1886. "item/PtlItemInfo/ResItemInfo": {
  1887. "type": "Interface",
  1888. "indexSignature": {
  1889. "keyType": "String",
  1890. "type": {
  1891. "type": "Number"
  1892. }
  1893. }
  1894. },
  1895. "item/server/MsgItemChange_s/MsgItemChange_s": {
  1896. "type": "Interface",
  1897. "properties": [
  1898. {
  1899. "id": 0,
  1900. "name": "items",
  1901. "type": {
  1902. "type": "Array",
  1903. "elementType": {
  1904. "type": "Array",
  1905. "elementType": {
  1906. "type": "Number"
  1907. }
  1908. }
  1909. }
  1910. }
  1911. ]
  1912. },
  1913. "mail/PtlMailDelAll/ReqMailDelAll": {
  1914. "type": "Interface"
  1915. },
  1916. "mail/PtlMailDelAll/ResMailDelAll": {
  1917. "type": "Interface",
  1918. "indexSignature": {
  1919. "keyType": "String",
  1920. "type": {
  1921. "type": "Interface",
  1922. "properties": [
  1923. {
  1924. "id": 0,
  1925. "name": "ets",
  1926. "type": {
  1927. "type": "Number"
  1928. }
  1929. }
  1930. ]
  1931. }
  1932. }
  1933. },
  1934. "mail/PtlMailDelOne/ReqMailDelOne": {
  1935. "type": "Interface",
  1936. "properties": [
  1937. {
  1938. "id": 0,
  1939. "name": "id",
  1940. "type": {
  1941. "type": "String"
  1942. }
  1943. }
  1944. ]
  1945. },
  1946. "mail/PtlMailDelOne/ResMailDelOne": {
  1947. "type": "Interface",
  1948. "indexSignature": {
  1949. "keyType": "String",
  1950. "type": {
  1951. "type": "Interface",
  1952. "properties": [
  1953. {
  1954. "id": 0,
  1955. "name": "ets",
  1956. "type": {
  1957. "type": "Number"
  1958. }
  1959. }
  1960. ]
  1961. }
  1962. }
  1963. },
  1964. "mail/PtlMailInfo/ReqMailInfo": {
  1965. "type": "Interface"
  1966. },
  1967. "mail/PtlMailInfo/ResMailInfo": {
  1968. "type": "Interface",
  1969. "indexSignature": {
  1970. "keyType": "String",
  1971. "type": {
  1972. "type": "Reference",
  1973. "target": "mail/PtlMailInfo/MailInfo"
  1974. }
  1975. }
  1976. },
  1977. "mail/PtlMailInfo/MailInfo": {
  1978. "type": "Interface",
  1979. "properties": [
  1980. {
  1981. "id": 0,
  1982. "name": "id",
  1983. "type": {
  1984. "type": "String"
  1985. }
  1986. },
  1987. {
  1988. "id": 1,
  1989. "name": "title",
  1990. "type": {
  1991. "type": "String"
  1992. }
  1993. },
  1994. {
  1995. "id": 2,
  1996. "name": "content",
  1997. "type": {
  1998. "type": "String"
  1999. }
  2000. },
  2001. {
  2002. "id": 3,
  2003. "name": "items",
  2004. "type": {
  2005. "type": "Array",
  2006. "elementType": {
  2007. "type": "Array",
  2008. "elementType": {
  2009. "type": "Number"
  2010. }
  2011. }
  2012. }
  2013. },
  2014. {
  2015. "id": 4,
  2016. "name": "fts",
  2017. "type": {
  2018. "type": "Number"
  2019. }
  2020. },
  2021. {
  2022. "id": 5,
  2023. "name": "rts",
  2024. "type": {
  2025. "type": "Number"
  2026. }
  2027. },
  2028. {
  2029. "id": 6,
  2030. "name": "ets",
  2031. "type": {
  2032. "type": "Number"
  2033. }
  2034. },
  2035. {
  2036. "id": 7,
  2037. "name": "dts",
  2038. "type": {
  2039. "type": "Number"
  2040. }
  2041. }
  2042. ]
  2043. },
  2044. "mail/PtlMailRwdAll/ReqMailRwdAll": {
  2045. "type": "Interface"
  2046. },
  2047. "mail/PtlMailRwdAll/ResMailRwdAll": {
  2048. "type": "Interface",
  2049. "indexSignature": {
  2050. "keyType": "String",
  2051. "type": {
  2052. "type": "Interface",
  2053. "properties": [
  2054. {
  2055. "id": 0,
  2056. "name": "rts",
  2057. "type": {
  2058. "type": "Number"
  2059. }
  2060. }
  2061. ]
  2062. }
  2063. }
  2064. },
  2065. "mail/PtlMailRwdOne/ReqMailRwdOne": {
  2066. "type": "Interface",
  2067. "properties": [
  2068. {
  2069. "id": 0,
  2070. "name": "id",
  2071. "type": {
  2072. "type": "String"
  2073. }
  2074. }
  2075. ]
  2076. },
  2077. "mail/PtlMailRwdOne/ResMailRwdOne": {
  2078. "type": "Interface",
  2079. "indexSignature": {
  2080. "keyType": "String",
  2081. "type": {
  2082. "type": "Interface",
  2083. "properties": [
  2084. {
  2085. "id": 0,
  2086. "name": "rts",
  2087. "type": {
  2088. "type": "Number"
  2089. }
  2090. }
  2091. ]
  2092. }
  2093. }
  2094. },
  2095. "mail/server/MsgMailNew_s/MsgMailNew_s": {
  2096. "type": "Interface",
  2097. "indexSignature": {
  2098. "keyType": "String",
  2099. "type": {
  2100. "type": "Reference",
  2101. "target": "mail/PtlMailInfo/MailInfo"
  2102. }
  2103. }
  2104. },
  2105. "plat/PtlPlatLogin/ReqPlatLogin": {
  2106. "type": "Interface",
  2107. "properties": [
  2108. {
  2109. "id": 0,
  2110. "name": "pid",
  2111. "type": {
  2112. "type": "String"
  2113. }
  2114. },
  2115. {
  2116. "id": 1,
  2117. "name": "param",
  2118. "type": {
  2119. "type": "Array",
  2120. "elementType": {
  2121. "type": "String"
  2122. }
  2123. }
  2124. }
  2125. ]
  2126. },
  2127. "plat/PtlPlatLogin/ResPlatLogin": {
  2128. "type": "Interface",
  2129. "properties": [
  2130. {
  2131. "id": 0,
  2132. "name": "openId",
  2133. "type": {
  2134. "type": "String"
  2135. }
  2136. },
  2137. {
  2138. "id": 1,
  2139. "name": "token",
  2140. "type": {
  2141. "type": "String"
  2142. }
  2143. },
  2144. {
  2145. "id": 2,
  2146. "name": "noticeWais",
  2147. "type": {
  2148. "type": "Array",
  2149. "elementType": {
  2150. "type": "Reference",
  2151. "target": "plat/PtlPlatLogin/Notices"
  2152. }
  2153. }
  2154. }
  2155. ]
  2156. },
  2157. "plat/PtlPlatLogin/Notices": {
  2158. "type": "Interface",
  2159. "properties": [
  2160. {
  2161. "id": 0,
  2162. "name": "type",
  2163. "type": {
  2164. "type": "Number"
  2165. }
  2166. },
  2167. {
  2168. "id": 1,
  2169. "name": "title",
  2170. "type": {
  2171. "type": "String"
  2172. }
  2173. },
  2174. {
  2175. "id": 2,
  2176. "name": "content",
  2177. "type": {
  2178. "type": "String"
  2179. }
  2180. }
  2181. ]
  2182. },
  2183. "player/PtlPlayerLogin/ReqPlayerLogin": {
  2184. "type": "Interface",
  2185. "properties": [
  2186. {
  2187. "id": 0,
  2188. "name": "pid",
  2189. "type": {
  2190. "type": "String"
  2191. }
  2192. },
  2193. {
  2194. "id": 1,
  2195. "name": "openId",
  2196. "type": {
  2197. "type": "String"
  2198. }
  2199. },
  2200. {
  2201. "id": 2,
  2202. "name": "lang",
  2203. "type": {
  2204. "type": "String"
  2205. }
  2206. },
  2207. {
  2208. "id": 3,
  2209. "name": "plat",
  2210. "type": {
  2211. "type": "String"
  2212. }
  2213. },
  2214. {
  2215. "id": 4,
  2216. "name": "device",
  2217. "type": {
  2218. "type": "String"
  2219. }
  2220. },
  2221. {
  2222. "id": 5,
  2223. "name": "parms",
  2224. "type": {
  2225. "type": "Array",
  2226. "elementType": {
  2227. "type": "String"
  2228. }
  2229. }
  2230. }
  2231. ]
  2232. },
  2233. "player/PtlPlayerLogin/ResPlayerLogin": {
  2234. "type": "Interface",
  2235. "properties": [
  2236. {
  2237. "id": 0,
  2238. "name": "uid",
  2239. "type": {
  2240. "type": "String"
  2241. }
  2242. },
  2243. {
  2244. "id": 1,
  2245. "name": "sid",
  2246. "type": {
  2247. "type": "String"
  2248. }
  2249. },
  2250. {
  2251. "id": 2,
  2252. "name": "list",
  2253. "type": {
  2254. "type": "Interface",
  2255. "indexSignature": {
  2256. "keyType": "String",
  2257. "type": {
  2258. "type": "Reference",
  2259. "target": "player/PtlPlayerLogin/ResLoginList"
  2260. }
  2261. }
  2262. }
  2263. },
  2264. {
  2265. "id": 3,
  2266. "name": "token",
  2267. "type": {
  2268. "type": "String"
  2269. }
  2270. },
  2271. {
  2272. "id": 4,
  2273. "name": "qufuList",
  2274. "type": {
  2275. "type": "Interface",
  2276. "indexSignature": {
  2277. "keyType": "String",
  2278. "type": {
  2279. "type": "Reference",
  2280. "target": "player/PtlPlayerLogin/qufuInfo"
  2281. }
  2282. }
  2283. }
  2284. },
  2285. {
  2286. "id": 6,
  2287. "name": "switch",
  2288. "type": {
  2289. "type": "Interface",
  2290. "indexSignature": {
  2291. "keyType": "String",
  2292. "type": {
  2293. "type": "Any"
  2294. }
  2295. }
  2296. }
  2297. },
  2298. {
  2299. "id": 7,
  2300. "name": "orderList",
  2301. "type": {
  2302. "type": "Interface",
  2303. "indexSignature": {
  2304. "keyType": "String",
  2305. "type": {
  2306. "type": "Reference",
  2307. "target": "player/PtlPlayerLogin/OrderList"
  2308. }
  2309. }
  2310. }
  2311. },
  2312. {
  2313. "id": 5,
  2314. "name": "wsUrl",
  2315. "type": {
  2316. "type": "String"
  2317. }
  2318. }
  2319. ]
  2320. },
  2321. "player/PtlPlayerLogin/ResLoginList": {
  2322. "type": "Interface",
  2323. "properties": [
  2324. {
  2325. "id": 0,
  2326. "name": "uuid",
  2327. "type": {
  2328. "type": "String"
  2329. }
  2330. },
  2331. {
  2332. "id": 1,
  2333. "name": "name",
  2334. "type": {
  2335. "type": "String"
  2336. }
  2337. },
  2338. {
  2339. "id": 2,
  2340. "name": "level",
  2341. "type": {
  2342. "type": "Number"
  2343. }
  2344. },
  2345. {
  2346. "id": 3,
  2347. "name": "lastlogin",
  2348. "type": {
  2349. "type": "Number"
  2350. }
  2351. }
  2352. ]
  2353. },
  2354. "player/PtlPlayerLogin/qufuInfo": {
  2355. "type": "Interface",
  2356. "properties": [
  2357. {
  2358. "id": 0,
  2359. "name": "sid",
  2360. "type": {
  2361. "type": "String"
  2362. }
  2363. },
  2364. {
  2365. "id": 1,
  2366. "name": "name",
  2367. "type": {
  2368. "type": "String"
  2369. }
  2370. },
  2371. {
  2372. "id": 2,
  2373. "name": "sName",
  2374. "type": {
  2375. "type": "String"
  2376. }
  2377. },
  2378. {
  2379. "id": 3,
  2380. "name": "openAt",
  2381. "type": {
  2382. "type": "Number"
  2383. }
  2384. },
  2385. {
  2386. "id": 4,
  2387. "name": "status",
  2388. "type": {
  2389. "type": "String"
  2390. }
  2391. },
  2392. {
  2393. "id": 5,
  2394. "name": "heid",
  2395. "type": {
  2396. "type": "String"
  2397. }
  2398. },
  2399. {
  2400. "id": 6,
  2401. "name": "suofu",
  2402. "type": {
  2403. "type": "String"
  2404. }
  2405. },
  2406. {
  2407. "id": 7,
  2408. "name": "skin",
  2409. "type": {
  2410. "type": "String"
  2411. }
  2412. }
  2413. ]
  2414. },
  2415. "player/PtlPlayerLogin/OrderList": {
  2416. "type": "Interface",
  2417. "properties": [
  2418. {
  2419. "id": 0,
  2420. "name": "rmb",
  2421. "type": {
  2422. "type": "Number"
  2423. }
  2424. },
  2425. {
  2426. "id": 1,
  2427. "name": "money",
  2428. "type": {
  2429. "type": "Number"
  2430. }
  2431. },
  2432. {
  2433. "id": 2,
  2434. "name": "desc",
  2435. "type": {
  2436. "type": "String"
  2437. }
  2438. },
  2439. {
  2440. "id": 3,
  2441. "name": "iid",
  2442. "type": {
  2443. "type": "String"
  2444. }
  2445. },
  2446. {
  2447. "id": 4,
  2448. "name": "daibi",
  2449. "type": {
  2450. "type": "Number"
  2451. }
  2452. }
  2453. ]
  2454. },
  2455. "task/PtlTaskInfo/ReqTaskInfo": {
  2456. "type": "Interface"
  2457. },
  2458. "task/PtlTaskInfo/ResTaskInfo": {
  2459. "type": "Interface",
  2460. "properties": [
  2461. {
  2462. "id": 0,
  2463. "name": "id",
  2464. "type": {
  2465. "type": "Number"
  2466. }
  2467. },
  2468. {
  2469. "id": 1,
  2470. "name": "cons",
  2471. "type": {
  2472. "type": "Number"
  2473. }
  2474. }
  2475. ]
  2476. },
  2477. "task/PtlTaskRwd/ReqTaskRwd": {
  2478. "type": "Interface"
  2479. },
  2480. "task/PtlTaskRwd/ResTaskRwd": {
  2481. "type": "Interface",
  2482. "properties": [
  2483. {
  2484. "id": 0,
  2485. "name": "id",
  2486. "type": {
  2487. "type": "Number"
  2488. }
  2489. },
  2490. {
  2491. "id": 1,
  2492. "name": "cons",
  2493. "type": {
  2494. "type": "Number"
  2495. }
  2496. }
  2497. ]
  2498. },
  2499. "task/server/MsgTaskCons_s/MsgTaskCons_s": {
  2500. "type": "Interface",
  2501. "properties": [
  2502. {
  2503. "id": 0,
  2504. "name": "cons",
  2505. "type": {
  2506. "type": "Number"
  2507. }
  2508. }
  2509. ]
  2510. },
  2511. "user/PtlUserLogin/ReqUserLogin": {
  2512. "type": "Interface",
  2513. "properties": [
  2514. {
  2515. "id": 0,
  2516. "name": "sid",
  2517. "type": {
  2518. "type": "String"
  2519. }
  2520. },
  2521. {
  2522. "id": 1,
  2523. "name": "uid",
  2524. "type": {
  2525. "type": "String"
  2526. }
  2527. },
  2528. {
  2529. "id": 2,
  2530. "name": "token",
  2531. "type": {
  2532. "type": "String"
  2533. }
  2534. }
  2535. ]
  2536. },
  2537. "user/PtlUserLogin/ResUserLogin": {
  2538. "type": "Interface",
  2539. "properties": [
  2540. {
  2541. "id": 0,
  2542. "name": "uuid",
  2543. "type": {
  2544. "type": "String"
  2545. }
  2546. },
  2547. {
  2548. "id": 1,
  2549. "name": "sid",
  2550. "type": {
  2551. "type": "String"
  2552. }
  2553. },
  2554. {
  2555. "id": 2,
  2556. "name": "name",
  2557. "type": {
  2558. "type": "String"
  2559. }
  2560. },
  2561. {
  2562. "id": 3,
  2563. "name": "head",
  2564. "type": {
  2565. "type": "String"
  2566. }
  2567. },
  2568. {
  2569. "id": 4,
  2570. "name": "wxhead",
  2571. "type": {
  2572. "type": "String"
  2573. }
  2574. },
  2575. {
  2576. "id": 5,
  2577. "name": "sex",
  2578. "type": {
  2579. "type": "Number"
  2580. }
  2581. },
  2582. {
  2583. "id": 6,
  2584. "name": "level",
  2585. "type": {
  2586. "type": "Number"
  2587. }
  2588. },
  2589. {
  2590. "id": 14,
  2591. "name": "exp",
  2592. "type": {
  2593. "type": "Number"
  2594. }
  2595. },
  2596. {
  2597. "id": 7,
  2598. "name": "regtime",
  2599. "type": {
  2600. "type": "Number"
  2601. }
  2602. },
  2603. {
  2604. "id": 8,
  2605. "name": "loginTime",
  2606. "type": {
  2607. "type": "Number"
  2608. }
  2609. },
  2610. {
  2611. "id": 9,
  2612. "name": "lastlogin",
  2613. "type": {
  2614. "type": "Number"
  2615. }
  2616. },
  2617. {
  2618. "id": 10,
  2619. "name": "lang",
  2620. "type": {
  2621. "type": "String"
  2622. }
  2623. },
  2624. {
  2625. "id": 11,
  2626. "name": "iscz",
  2627. "type": {
  2628. "type": "Number"
  2629. }
  2630. },
  2631. {
  2632. "id": 12,
  2633. "name": "rmbcz",
  2634. "type": {
  2635. "type": "Number"
  2636. }
  2637. },
  2638. {
  2639. "id": 13,
  2640. "name": "power",
  2641. "type": {
  2642. "type": "Number"
  2643. }
  2644. }
  2645. ]
  2646. },
  2647. "user/PtlUserNotices/ReqUserNotices": {
  2648. "type": "Interface"
  2649. },
  2650. "user/PtlUserNotices/ResUserNotices": {
  2651. "type": "Interface",
  2652. "properties": [
  2653. {
  2654. "id": 0,
  2655. "name": "notices",
  2656. "type": {
  2657. "type": "Array",
  2658. "elementType": {
  2659. "type": "Reference",
  2660. "target": "plat/PtlPlatLogin/Notices"
  2661. }
  2662. }
  2663. }
  2664. ]
  2665. },
  2666. "user/PtlUserSetName/ReqUserSetName": {
  2667. "type": "Interface",
  2668. "properties": [
  2669. {
  2670. "id": 0,
  2671. "name": "name",
  2672. "type": {
  2673. "type": "String"
  2674. }
  2675. }
  2676. ]
  2677. },
  2678. "user/PtlUserSetName/ResUserSetName": {
  2679. "type": "Interface",
  2680. "properties": [
  2681. {
  2682. "id": 0,
  2683. "name": "name",
  2684. "type": {
  2685. "type": "String"
  2686. }
  2687. }
  2688. ]
  2689. },
  2690. "user/PtlUserUseCode/ReqUserUseCode": {
  2691. "type": "Interface",
  2692. "properties": [
  2693. {
  2694. "id": 0,
  2695. "name": "key",
  2696. "type": {
  2697. "type": "String"
  2698. }
  2699. }
  2700. ]
  2701. },
  2702. "user/PtlUserUseCode/ResUserUseCode": {
  2703. "type": "Interface"
  2704. },
  2705. "user/server/MsgUserUplevel_s/MsgUserUplevel_s": {
  2706. "type": "Interface",
  2707. "properties": [
  2708. {
  2709. "id": 0,
  2710. "name": "level",
  2711. "type": {
  2712. "type": "Number"
  2713. }
  2714. },
  2715. {
  2716. "id": 1,
  2717. "name": "exp",
  2718. "type": {
  2719. "type": "Number"
  2720. }
  2721. }
  2722. ]
  2723. }
  2724. }
  2725. };