serviceProto.ts 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935
  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 { Reqxaizai, Resxaizai } from './admin/Ptlxaizai';
  25. import { MsgItems } from './common/MsgItems';
  26. import { MsgMessage } from './common/MsgMessage';
  27. import { ReqEpsInfo, ResEpsInfo } from './eps/PtlEpsInfo';
  28. import { MsgEpsChange_s } from './eps/server/MsgEpsChange_s';
  29. import { ReqHcInfo, ResHcInfo } from './hc/PtlHcInfo';
  30. import { ReqHcMerge, ResHcMerge } from './hc/PtlHcMerge';
  31. import { ReqItemInfo, ResItemInfo } from './item/PtlItemInfo';
  32. import { MsgItemChange_s } from './item/server/MsgItemChange_s';
  33. import { ReqPlatLogin, ResPlatLogin } from './plat/PtlPlatLogin';
  34. import { ReqPlayerLogin, ResPlayerLogin } from './player/PtlPlayerLogin';
  35. import { ReqTaskInfo, ResTaskInfo } from './task/PtlTaskInfo';
  36. import { ReqTaskRwd, ResTaskRwd } from './task/PtlTaskRwd';
  37. import { ReqUserFight, ResUserFight } from './user/PtlUserFight';
  38. import { ReqUserLogin, ResUserLogin } from './user/PtlUserLogin';
  39. import { ReqUserSetName, ResUserSetName } from './user/PtlUserSetName';
  40. import { MsgUserUplevel_s } from './user/server/MsgUserUplevel_s';
  41. export interface ServiceType {
  42. api: {
  43. "admin/addBuMa": {
  44. req: ReqaddBuMa,
  45. res: ResaddBuMa
  46. },
  47. "admin/addCode": {
  48. req: ReqaddCode,
  49. res: ResaddCode
  50. },
  51. "admin/addMail": {
  52. req: ReqaddMail,
  53. res: ResaddMail
  54. },
  55. "admin/cacheVer": {
  56. req: ReqcacheVer,
  57. res: RescacheVer
  58. },
  59. "admin/deleteCode": {
  60. req: ReqdeleteCode,
  61. res: ResdeleteCode
  62. },
  63. "admin/deleteMail": {
  64. req: ReqdeleteMail,
  65. res: ResdeleteMail
  66. },
  67. "admin/deleteQuFu": {
  68. req: ReqdeleteQuFu,
  69. res: ResdeleteQuFu
  70. },
  71. "admin/deleteSetting": {
  72. req: ReqdeleteSetting,
  73. res: ResdeleteSetting
  74. },
  75. "admin/getCode": {
  76. req: ReqgetCode,
  77. res: ResgetCode
  78. },
  79. "admin/getCodeMa": {
  80. req: ReqgetCodeMa,
  81. res: ResgetCodeMa
  82. },
  83. "admin/getMail": {
  84. req: ReqgetMail,
  85. res: ResgetMail
  86. },
  87. "admin/getNeed": {
  88. req: ReqgetNeed,
  89. res: ResgetNeed
  90. },
  91. "admin/getQuFu": {
  92. req: ReqgetQuFu,
  93. res: ResgetQuFu
  94. },
  95. "admin/getSetting": {
  96. req: ReqgetSetting,
  97. res: ResgetSetting
  98. },
  99. "admin/getVer": {
  100. req: ReqgetVer,
  101. res: ResgetVer
  102. },
  103. "admin/huodongAdd": {
  104. req: ReqhuodongAdd,
  105. res: ReshuodongAdd
  106. },
  107. "admin/huodongDelete": {
  108. req: ReqhuodongDelete,
  109. res: ReshuodongDelete
  110. },
  111. "admin/huodongEdit": {
  112. req: ReqhuodongEdit,
  113. res: ReshuodongEdit
  114. },
  115. "admin/huodongFind": {
  116. req: ReqhuodongFind,
  117. res: ReshuodongFind
  118. },
  119. "admin/updateMail": {
  120. req: RequpdateMail,
  121. res: ResupdateMail
  122. },
  123. "admin/updateQuFu": {
  124. req: RequpdateQuFu,
  125. res: ResupdateQuFu
  126. },
  127. "admin/updateSetting": {
  128. req: RequpdateSetting,
  129. res: ResupdateSetting
  130. },
  131. "admin/xaizai": {
  132. req: Reqxaizai,
  133. res: Resxaizai
  134. },
  135. "eps/EpsInfo": {
  136. req: ReqEpsInfo,
  137. res: ResEpsInfo
  138. },
  139. "hc/HcInfo": {
  140. req: ReqHcInfo,
  141. res: ResHcInfo
  142. },
  143. "hc/HcMerge": {
  144. req: ReqHcMerge,
  145. res: ResHcMerge
  146. },
  147. "item/ItemInfo": {
  148. req: ReqItemInfo,
  149. res: ResItemInfo
  150. },
  151. "plat/PlatLogin": {
  152. req: ReqPlatLogin,
  153. res: ResPlatLogin
  154. },
  155. "player/PlayerLogin": {
  156. req: ReqPlayerLogin,
  157. res: ResPlayerLogin
  158. },
  159. "task/TaskInfo": {
  160. req: ReqTaskInfo,
  161. res: ResTaskInfo
  162. },
  163. "task/TaskRwd": {
  164. req: ReqTaskRwd,
  165. res: ResTaskRwd
  166. },
  167. "user/UserFight": {
  168. req: ReqUserFight,
  169. res: ResUserFight
  170. },
  171. "user/UserLogin": {
  172. req: ReqUserLogin,
  173. res: ResUserLogin
  174. },
  175. "user/UserSetName": {
  176. req: ReqUserSetName,
  177. res: ResUserSetName
  178. }
  179. },
  180. msg: {
  181. "common/Items": MsgItems,
  182. "common/Message": MsgMessage,
  183. "eps/server/EpsChange_s": MsgEpsChange_s,
  184. "item/server/ItemChange_s": MsgItemChange_s,
  185. "user/server/UserUplevel_s": MsgUserUplevel_s
  186. }
  187. }
  188. export const serviceProto: ServiceProto<ServiceType> = {
  189. "version": 47,
  190. "services": [
  191. {
  192. "id": 39,
  193. "name": "admin/addBuMa",
  194. "type": "api",
  195. "conf": {
  196. "connet": "admin"
  197. }
  198. },
  199. {
  200. "id": 38,
  201. "name": "admin/addCode",
  202. "type": "api",
  203. "conf": {
  204. "connet": "admin"
  205. }
  206. },
  207. {
  208. "id": 42,
  209. "name": "admin/addMail",
  210. "type": "api",
  211. "conf": {
  212. "connet": "admin"
  213. }
  214. },
  215. {
  216. "id": 35,
  217. "name": "admin/cacheVer",
  218. "type": "api",
  219. "conf": {
  220. "connet": "admin"
  221. }
  222. },
  223. {
  224. "id": 40,
  225. "name": "admin/deleteCode",
  226. "type": "api",
  227. "conf": {
  228. "connet": "admin"
  229. }
  230. },
  231. {
  232. "id": 43,
  233. "name": "admin/deleteMail",
  234. "type": "api",
  235. "conf": {
  236. "connet": "admin"
  237. }
  238. },
  239. {
  240. "id": 5,
  241. "name": "admin/deleteQuFu",
  242. "type": "api",
  243. "conf": {
  244. "connet": "admin"
  245. }
  246. },
  247. {
  248. "id": 23,
  249. "name": "admin/deleteSetting",
  250. "type": "api",
  251. "conf": {
  252. "connet": "admin"
  253. }
  254. },
  255. {
  256. "id": 36,
  257. "name": "admin/getCode",
  258. "type": "api",
  259. "conf": {
  260. "connet": "admin"
  261. }
  262. },
  263. {
  264. "id": 37,
  265. "name": "admin/getCodeMa",
  266. "type": "api",
  267. "conf": {
  268. "connet": "admin"
  269. }
  270. },
  271. {
  272. "id": 45,
  273. "name": "admin/getMail",
  274. "type": "api",
  275. "conf": {
  276. "connet": "admin"
  277. }
  278. },
  279. {
  280. "id": 6,
  281. "name": "admin/getNeed",
  282. "type": "api",
  283. "conf": {
  284. "connet": "admin"
  285. }
  286. },
  287. {
  288. "id": 7,
  289. "name": "admin/getQuFu",
  290. "type": "api",
  291. "conf": {
  292. "connet": "admin"
  293. }
  294. },
  295. {
  296. "id": 25,
  297. "name": "admin/getSetting",
  298. "type": "api",
  299. "conf": {
  300. "connet": "admin"
  301. }
  302. },
  303. {
  304. "id": 26,
  305. "name": "admin/getVer",
  306. "type": "api",
  307. "conf": {
  308. "connet": "admin"
  309. }
  310. },
  311. {
  312. "id": 70,
  313. "name": "admin/huodongAdd",
  314. "type": "api",
  315. "conf": {
  316. "connet": "admin"
  317. }
  318. },
  319. {
  320. "id": 71,
  321. "name": "admin/huodongDelete",
  322. "type": "api",
  323. "conf": {
  324. "connet": "admin"
  325. }
  326. },
  327. {
  328. "id": 72,
  329. "name": "admin/huodongEdit",
  330. "type": "api",
  331. "conf": {
  332. "connet": "admin"
  333. }
  334. },
  335. {
  336. "id": 46,
  337. "name": "admin/huodongFind",
  338. "type": "api",
  339. "conf": {
  340. "connet": "admin"
  341. }
  342. },
  343. {
  344. "id": 44,
  345. "name": "admin/updateMail",
  346. "type": "api",
  347. "conf": {
  348. "connet": "admin"
  349. }
  350. },
  351. {
  352. "id": 8,
  353. "name": "admin/updateQuFu",
  354. "type": "api",
  355. "conf": {
  356. "connet": "admin"
  357. }
  358. },
  359. {
  360. "id": 31,
  361. "name": "admin/updateSetting",
  362. "type": "api",
  363. "conf": {
  364. "connet": "admin"
  365. }
  366. },
  367. {
  368. "id": 41,
  369. "name": "admin/xaizai",
  370. "type": "api",
  371. "conf": {
  372. "connet": "admin"
  373. }
  374. },
  375. {
  376. "id": 18,
  377. "name": "common/Items",
  378. "type": "msg"
  379. },
  380. {
  381. "id": 19,
  382. "name": "common/Message",
  383. "type": "msg"
  384. },
  385. {
  386. "id": 65,
  387. "name": "eps/EpsInfo",
  388. "type": "api",
  389. "conf": {
  390. "connet": "ws"
  391. }
  392. },
  393. {
  394. "id": 50,
  395. "name": "eps/server/EpsChange_s",
  396. "type": "msg"
  397. },
  398. {
  399. "id": 66,
  400. "name": "hc/HcInfo",
  401. "type": "api",
  402. "conf": {
  403. "connet": "ws"
  404. }
  405. },
  406. {
  407. "id": 64,
  408. "name": "hc/HcMerge",
  409. "type": "api",
  410. "conf": {
  411. "connet": "ws"
  412. }
  413. },
  414. {
  415. "id": 67,
  416. "name": "item/ItemInfo",
  417. "type": "api",
  418. "conf": {
  419. "connet": "ws"
  420. }
  421. },
  422. {
  423. "id": 55,
  424. "name": "item/server/ItemChange_s",
  425. "type": "msg"
  426. },
  427. {
  428. "id": 57,
  429. "name": "plat/PlatLogin",
  430. "type": "api",
  431. "conf": {
  432. "connet": "http"
  433. }
  434. },
  435. {
  436. "id": 58,
  437. "name": "player/PlayerLogin",
  438. "type": "api",
  439. "conf": {
  440. "connet": "http"
  441. }
  442. },
  443. {
  444. "id": 74,
  445. "name": "task/TaskInfo",
  446. "type": "api",
  447. "conf": {
  448. "connet": "ws"
  449. }
  450. },
  451. {
  452. "id": 75,
  453. "name": "task/TaskRwd",
  454. "type": "api",
  455. "conf": {
  456. "connet": "ws"
  457. }
  458. },
  459. {
  460. "id": 68,
  461. "name": "user/UserFight",
  462. "type": "api",
  463. "conf": {
  464. "connet": "ws"
  465. }
  466. },
  467. {
  468. "id": 61,
  469. "name": "user/UserLogin",
  470. "type": "api",
  471. "conf": {
  472. "connet": "ws"
  473. }
  474. },
  475. {
  476. "id": 69,
  477. "name": "user/UserSetName",
  478. "type": "api",
  479. "conf": {
  480. "connet": "ws"
  481. }
  482. },
  483. {
  484. "id": 73,
  485. "name": "user/server/UserUplevel_s",
  486. "type": "msg"
  487. }
  488. ],
  489. "types": {
  490. "admin/PtladdBuMa/ReqaddBuMa": {
  491. "type": "Interface",
  492. "properties": [
  493. {
  494. "id": 0,
  495. "name": "id",
  496. "type": {
  497. "type": "String"
  498. }
  499. },
  500. {
  501. "id": 1,
  502. "name": "addCount",
  503. "type": {
  504. "type": "Number"
  505. }
  506. }
  507. ]
  508. },
  509. "admin/PtladdBuMa/ResaddBuMa": {
  510. "type": "Interface",
  511. "properties": [
  512. {
  513. "id": 0,
  514. "name": "order10Back",
  515. "type": {
  516. "type": "Any"
  517. }
  518. }
  519. ]
  520. },
  521. "admin/PtladdCode/ReqaddCode": {
  522. "type": "Interface",
  523. "properties": [
  524. {
  525. "id": 1,
  526. "name": "param",
  527. "type": {
  528. "type": "Any"
  529. }
  530. }
  531. ]
  532. },
  533. "admin/PtladdCode/ResaddCode": {
  534. "type": "Interface",
  535. "properties": [
  536. {
  537. "id": 0,
  538. "name": "order10Back",
  539. "type": {
  540. "type": "Any"
  541. }
  542. }
  543. ]
  544. },
  545. "admin/PtladdMail/ReqaddMail": {
  546. "type": "Interface",
  547. "properties": [
  548. {
  549. "id": 0,
  550. "name": "params",
  551. "type": {
  552. "type": "Any"
  553. }
  554. }
  555. ]
  556. },
  557. "admin/PtladdMail/ResaddMail": {
  558. "type": "Interface",
  559. "properties": [
  560. {
  561. "id": 0,
  562. "name": "order10Back",
  563. "type": {
  564. "type": "Any"
  565. }
  566. }
  567. ]
  568. },
  569. "admin/PtlcacheVer/ReqcacheVer": {
  570. "type": "Interface"
  571. },
  572. "admin/PtlcacheVer/RescacheVer": {
  573. "type": "Interface",
  574. "properties": [
  575. {
  576. "id": 0,
  577. "name": "order10Back",
  578. "type": {
  579. "type": "Any"
  580. }
  581. }
  582. ]
  583. },
  584. "admin/PtldeleteCode/ReqdeleteCode": {
  585. "type": "Interface",
  586. "properties": [
  587. {
  588. "id": 0,
  589. "name": "id",
  590. "type": {
  591. "type": "String"
  592. }
  593. }
  594. ]
  595. },
  596. "admin/PtldeleteCode/ResdeleteCode": {
  597. "type": "Interface",
  598. "properties": [
  599. {
  600. "id": 0,
  601. "name": "order10Back",
  602. "type": {
  603. "type": "Any"
  604. }
  605. }
  606. ]
  607. },
  608. "admin/PtldeleteMail/ReqdeleteMail": {
  609. "type": "Interface",
  610. "properties": [
  611. {
  612. "id": 0,
  613. "name": "id",
  614. "type": {
  615. "type": "String"
  616. }
  617. }
  618. ]
  619. },
  620. "admin/PtldeleteMail/ResdeleteMail": {
  621. "type": "Interface",
  622. "properties": [
  623. {
  624. "id": 0,
  625. "name": "order10Back",
  626. "type": {
  627. "type": "Any"
  628. }
  629. }
  630. ]
  631. },
  632. "admin/PtldeleteQuFu/ReqdeleteQuFu": {
  633. "type": "Interface",
  634. "properties": [
  635. {
  636. "id": 0,
  637. "name": "sid",
  638. "type": {
  639. "type": "String"
  640. }
  641. }
  642. ]
  643. },
  644. "admin/PtldeleteQuFu/ResdeleteQuFu": {
  645. "type": "Interface",
  646. "properties": [
  647. {
  648. "id": 0,
  649. "name": "order10Back",
  650. "type": {
  651. "type": "Any"
  652. }
  653. }
  654. ]
  655. },
  656. "admin/PtldeleteSetting/ReqdeleteSetting": {
  657. "type": "Interface",
  658. "properties": [
  659. {
  660. "id": 0,
  661. "name": "key",
  662. "type": {
  663. "type": "String"
  664. }
  665. }
  666. ]
  667. },
  668. "admin/PtldeleteSetting/ResdeleteSetting": {
  669. "type": "Interface",
  670. "properties": [
  671. {
  672. "id": 0,
  673. "name": "order10Back",
  674. "type": {
  675. "type": "Any"
  676. }
  677. }
  678. ]
  679. },
  680. "admin/PtlgetCode/ReqgetCode": {
  681. "type": "Interface"
  682. },
  683. "admin/PtlgetCode/ResgetCode": {
  684. "type": "Interface",
  685. "properties": [
  686. {
  687. "id": 0,
  688. "name": "order10Back",
  689. "type": {
  690. "type": "Any"
  691. }
  692. }
  693. ]
  694. },
  695. "admin/PtlgetCodeMa/ReqgetCodeMa": {
  696. "type": "Interface",
  697. "properties": [
  698. {
  699. "id": 0,
  700. "name": "id",
  701. "type": {
  702. "type": "String"
  703. }
  704. }
  705. ]
  706. },
  707. "admin/PtlgetCodeMa/ResgetCodeMa": {
  708. "type": "Interface",
  709. "properties": [
  710. {
  711. "id": 0,
  712. "name": "order10Back",
  713. "type": {
  714. "type": "Any"
  715. }
  716. }
  717. ]
  718. },
  719. "admin/PtlgetMail/ReqgetMail": {
  720. "type": "Interface"
  721. },
  722. "admin/PtlgetMail/ResgetMail": {
  723. "type": "Interface",
  724. "properties": [
  725. {
  726. "id": 0,
  727. "name": "order10Back",
  728. "type": {
  729. "type": "Any"
  730. }
  731. }
  732. ]
  733. },
  734. "admin/PtlgetNeed/ReqgetNeed": {
  735. "type": "Interface",
  736. "properties": [
  737. {
  738. "id": 0,
  739. "name": "stime",
  740. "type": {
  741. "type": "Number"
  742. }
  743. },
  744. {
  745. "id": 1,
  746. "name": "timeInterval",
  747. "type": {
  748. "type": "Number"
  749. }
  750. }
  751. ]
  752. },
  753. "admin/PtlgetNeed/ResgetNeed": {
  754. "type": "Interface",
  755. "properties": [
  756. {
  757. "id": 0,
  758. "name": "order10Back",
  759. "type": {
  760. "type": "Any"
  761. }
  762. }
  763. ]
  764. },
  765. "admin/PtlgetQuFu/ReqgetQuFu": {
  766. "type": "Interface"
  767. },
  768. "admin/PtlgetQuFu/ResgetQuFu": {
  769. "type": "Interface",
  770. "properties": [
  771. {
  772. "id": 0,
  773. "name": "order10Back",
  774. "type": {
  775. "type": "Any"
  776. }
  777. }
  778. ]
  779. },
  780. "admin/PtlgetSetting/ReqgetSetting": {
  781. "type": "Interface"
  782. },
  783. "admin/PtlgetSetting/ResgetSetting": {
  784. "type": "Interface",
  785. "properties": [
  786. {
  787. "id": 2,
  788. "name": "order10Back",
  789. "type": {
  790. "type": "Any"
  791. }
  792. }
  793. ]
  794. },
  795. "admin/PtlgetVer/ReqgetVer": {
  796. "type": "Interface"
  797. },
  798. "admin/PtlgetVer/ResgetVer": {
  799. "type": "Interface",
  800. "properties": [
  801. {
  802. "id": 0,
  803. "name": "order10Back",
  804. "type": {
  805. "type": "Any"
  806. }
  807. }
  808. ]
  809. },
  810. "admin/PtlhuodongAdd/ReqhuodongAdd": {
  811. "type": "Interface",
  812. "properties": [
  813. {
  814. "id": 0,
  815. "name": "params",
  816. "type": {
  817. "type": "Any"
  818. }
  819. }
  820. ]
  821. },
  822. "admin/PtlhuodongAdd/ReshuodongAdd": {
  823. "type": "Interface",
  824. "properties": [
  825. {
  826. "id": 0,
  827. "name": "order10Back",
  828. "type": {
  829. "type": "Any"
  830. }
  831. }
  832. ]
  833. },
  834. "admin/PtlhuodongDelete/ReqhuodongDelete": {
  835. "type": "Interface",
  836. "properties": [
  837. {
  838. "id": 0,
  839. "name": "id",
  840. "type": {
  841. "type": "String"
  842. }
  843. }
  844. ]
  845. },
  846. "admin/PtlhuodongDelete/ReshuodongDelete": {
  847. "type": "Interface",
  848. "properties": [
  849. {
  850. "id": 0,
  851. "name": "order10Back",
  852. "type": {
  853. "type": "Any"
  854. }
  855. }
  856. ]
  857. },
  858. "admin/PtlhuodongEdit/ReqhuodongEdit": {
  859. "type": "Interface",
  860. "properties": [
  861. {
  862. "id": 0,
  863. "name": "id",
  864. "type": {
  865. "type": "String"
  866. }
  867. },
  868. {
  869. "id": 1,
  870. "name": "params",
  871. "type": {
  872. "type": "Any"
  873. }
  874. }
  875. ]
  876. },
  877. "admin/PtlhuodongEdit/ReshuodongEdit": {
  878. "type": "Interface",
  879. "properties": [
  880. {
  881. "id": 0,
  882. "name": "order10Back",
  883. "type": {
  884. "type": "Any"
  885. }
  886. }
  887. ]
  888. },
  889. "admin/PtlhuodongFind/ReqhuodongFind": {
  890. "type": "Interface",
  891. "properties": [
  892. {
  893. "id": 0,
  894. "name": "key",
  895. "type": {
  896. "type": "String"
  897. },
  898. "optional": true
  899. },
  900. {
  901. "id": 1,
  902. "name": "hdcid",
  903. "type": {
  904. "type": "String"
  905. },
  906. "optional": true
  907. }
  908. ]
  909. },
  910. "admin/PtlhuodongFind/ReshuodongFind": {
  911. "type": "Interface",
  912. "properties": [
  913. {
  914. "id": 0,
  915. "name": "order10Back",
  916. "type": {
  917. "type": "Any"
  918. }
  919. }
  920. ]
  921. },
  922. "admin/PtlupdateMail/RequpdateMail": {
  923. "type": "Interface",
  924. "properties": [
  925. {
  926. "id": 0,
  927. "name": "id",
  928. "type": {
  929. "type": "String"
  930. }
  931. },
  932. {
  933. "id": 1,
  934. "name": "params",
  935. "type": {
  936. "type": "Any"
  937. }
  938. }
  939. ]
  940. },
  941. "admin/PtlupdateMail/ResupdateMail": {
  942. "type": "Interface",
  943. "properties": [
  944. {
  945. "id": 0,
  946. "name": "order10Back",
  947. "type": {
  948. "type": "Any"
  949. }
  950. }
  951. ]
  952. },
  953. "admin/PtlupdateQuFu/RequpdateQuFu": {
  954. "type": "Interface",
  955. "properties": [
  956. {
  957. "id": 0,
  958. "name": "sid",
  959. "type": {
  960. "type": "String"
  961. }
  962. },
  963. {
  964. "id": 1,
  965. "name": "param",
  966. "type": {
  967. "type": "Interface",
  968. "indexSignature": {
  969. "keyType": "String",
  970. "type": {
  971. "type": "Any"
  972. }
  973. }
  974. }
  975. }
  976. ]
  977. },
  978. "admin/PtlupdateQuFu/ResupdateQuFu": {
  979. "type": "Interface",
  980. "properties": [
  981. {
  982. "id": 0,
  983. "name": "order10Back",
  984. "type": {
  985. "type": "Any"
  986. }
  987. }
  988. ]
  989. },
  990. "admin/PtlupdateSetting/RequpdateSetting": {
  991. "type": "Interface",
  992. "properties": [
  993. {
  994. "id": 0,
  995. "name": "key",
  996. "type": {
  997. "type": "String"
  998. }
  999. },
  1000. {
  1001. "id": 1,
  1002. "name": "param",
  1003. "type": {
  1004. "type": "Any"
  1005. }
  1006. }
  1007. ]
  1008. },
  1009. "admin/PtlupdateSetting/ResupdateSetting": {
  1010. "type": "Interface",
  1011. "properties": [
  1012. {
  1013. "id": 0,
  1014. "name": "order10Back",
  1015. "type": {
  1016. "type": "Any"
  1017. }
  1018. }
  1019. ]
  1020. },
  1021. "admin/Ptlxaizai/Reqxaizai": {
  1022. "type": "Interface",
  1023. "properties": [
  1024. {
  1025. "id": 0,
  1026. "name": "id",
  1027. "type": {
  1028. "type": "String"
  1029. }
  1030. }
  1031. ]
  1032. },
  1033. "admin/Ptlxaizai/Resxaizai": {
  1034. "type": "Interface",
  1035. "properties": [
  1036. {
  1037. "id": 0,
  1038. "name": "order10Back",
  1039. "type": {
  1040. "type": "Any"
  1041. }
  1042. }
  1043. ]
  1044. },
  1045. "common/MsgItems/MsgItems": {
  1046. "type": "Interface",
  1047. "properties": [
  1048. {
  1049. "id": 0,
  1050. "name": "items",
  1051. "type": {
  1052. "type": "Array",
  1053. "elementType": {
  1054. "type": "Number"
  1055. }
  1056. }
  1057. }
  1058. ]
  1059. },
  1060. "common/MsgMessage/MsgMessage": {
  1061. "type": "Interface",
  1062. "properties": [
  1063. {
  1064. "id": 0,
  1065. "name": "message",
  1066. "type": {
  1067. "type": "String"
  1068. }
  1069. }
  1070. ]
  1071. },
  1072. "eps/PtlEpsInfo/ReqEpsInfo": {
  1073. "type": "Interface"
  1074. },
  1075. "eps/PtlEpsInfo/ResEpsInfo": {
  1076. "type": "Interface",
  1077. "indexSignature": {
  1078. "keyType": "String",
  1079. "type": {
  1080. "type": "Number"
  1081. }
  1082. }
  1083. },
  1084. "eps/server/MsgEpsChange_s/MsgEpsChange_s": {
  1085. "type": "Interface",
  1086. "indexSignature": {
  1087. "keyType": "String",
  1088. "type": {
  1089. "type": "Number"
  1090. }
  1091. }
  1092. },
  1093. "hc/PtlHcInfo/ReqHcInfo": {
  1094. "type": "Interface"
  1095. },
  1096. "hc/PtlHcInfo/ResHcInfo": {
  1097. "type": "Interface",
  1098. "properties": [
  1099. {
  1100. "id": 0,
  1101. "name": "chapterId",
  1102. "type": {
  1103. "type": "Number"
  1104. }
  1105. },
  1106. {
  1107. "id": 1,
  1108. "name": "tili",
  1109. "type": {
  1110. "type": "Number"
  1111. }
  1112. },
  1113. {
  1114. "id": 2,
  1115. "name": "lastTime",
  1116. "type": {
  1117. "type": "Number"
  1118. }
  1119. },
  1120. {
  1121. "id": 3,
  1122. "name": "list",
  1123. "type": {
  1124. "type": "Reference",
  1125. "target": "hc/PtlHcInfo/HcInfoList"
  1126. }
  1127. }
  1128. ]
  1129. },
  1130. "hc/PtlHcInfo/HcInfoList": {
  1131. "type": "Interface",
  1132. "indexSignature": {
  1133. "keyType": "String",
  1134. "type": {
  1135. "type": "Reference",
  1136. "target": "hc/PtlHcInfo/HcInfoGeziInfo"
  1137. }
  1138. }
  1139. },
  1140. "hc/PtlHcInfo/HcInfoGeziInfo": {
  1141. "type": "Interface",
  1142. "properties": [
  1143. {
  1144. "id": 0,
  1145. "name": "type",
  1146. "type": {
  1147. "type": "Reference",
  1148. "target": "hc/PtlHcInfo/HcType"
  1149. }
  1150. },
  1151. {
  1152. "id": 1,
  1153. "name": "unlock",
  1154. "type": {
  1155. "type": "Reference",
  1156. "target": "hc/PtlHcInfo/HcUnlock"
  1157. }
  1158. },
  1159. {
  1160. "id": 2,
  1161. "name": "correlationId",
  1162. "type": {
  1163. "type": "Number"
  1164. }
  1165. }
  1166. ]
  1167. },
  1168. "hc/PtlHcInfo/HcType": {
  1169. "type": "Enum",
  1170. "members": [
  1171. {
  1172. "id": 0,
  1173. "value": 0
  1174. },
  1175. {
  1176. "id": 1,
  1177. "value": 1
  1178. },
  1179. {
  1180. "id": 2,
  1181. "value": 2
  1182. },
  1183. {
  1184. "id": 3,
  1185. "value": 3
  1186. },
  1187. {
  1188. "id": 4,
  1189. "value": 4
  1190. }
  1191. ]
  1192. },
  1193. "hc/PtlHcInfo/HcUnlock": {
  1194. "type": "Enum",
  1195. "members": [
  1196. {
  1197. "id": 0,
  1198. "value": 0
  1199. },
  1200. {
  1201. "id": 1,
  1202. "value": 1
  1203. }
  1204. ]
  1205. },
  1206. "hc/PtlHcMerge/ReqHcMerge": {
  1207. "type": "Interface",
  1208. "properties": [
  1209. {
  1210. "id": 0,
  1211. "name": "gzid1",
  1212. "type": {
  1213. "type": "String"
  1214. }
  1215. },
  1216. {
  1217. "id": 1,
  1218. "name": "gzid2",
  1219. "type": {
  1220. "type": "String"
  1221. }
  1222. }
  1223. ]
  1224. },
  1225. "hc/PtlHcMerge/ResHcMerge": {
  1226. "type": "Interface",
  1227. "indexSignature": {
  1228. "keyType": "String",
  1229. "type": {
  1230. "type": "Reference",
  1231. "target": "hc/PtlHcInfo/HcInfoGeziInfo"
  1232. }
  1233. }
  1234. },
  1235. "item/PtlItemInfo/ReqItemInfo": {
  1236. "type": "Interface"
  1237. },
  1238. "item/PtlItemInfo/ResItemInfo": {
  1239. "type": "Interface",
  1240. "indexSignature": {
  1241. "keyType": "String",
  1242. "type": {
  1243. "type": "Number"
  1244. }
  1245. }
  1246. },
  1247. "item/server/MsgItemChange_s/MsgItemChange_s": {
  1248. "type": "Interface",
  1249. "indexSignature": {
  1250. "keyType": "String",
  1251. "type": {
  1252. "type": "Number"
  1253. }
  1254. }
  1255. },
  1256. "plat/PtlPlatLogin/ReqPlatLogin": {
  1257. "type": "Interface",
  1258. "properties": [
  1259. {
  1260. "id": 0,
  1261. "name": "pid",
  1262. "type": {
  1263. "type": "String"
  1264. }
  1265. },
  1266. {
  1267. "id": 1,
  1268. "name": "param",
  1269. "type": {
  1270. "type": "Array",
  1271. "elementType": {
  1272. "type": "String"
  1273. }
  1274. }
  1275. }
  1276. ]
  1277. },
  1278. "plat/PtlPlatLogin/ResPlatLogin": {
  1279. "type": "Interface",
  1280. "properties": [
  1281. {
  1282. "id": 0,
  1283. "name": "openId",
  1284. "type": {
  1285. "type": "String"
  1286. }
  1287. },
  1288. {
  1289. "id": 1,
  1290. "name": "token",
  1291. "type": {
  1292. "type": "String"
  1293. }
  1294. }
  1295. ]
  1296. },
  1297. "player/PtlPlayerLogin/ReqPlayerLogin": {
  1298. "type": "Interface",
  1299. "properties": [
  1300. {
  1301. "id": 0,
  1302. "name": "pid",
  1303. "type": {
  1304. "type": "String"
  1305. }
  1306. },
  1307. {
  1308. "id": 1,
  1309. "name": "openId",
  1310. "type": {
  1311. "type": "String"
  1312. }
  1313. },
  1314. {
  1315. "id": 2,
  1316. "name": "lang",
  1317. "type": {
  1318. "type": "String"
  1319. }
  1320. },
  1321. {
  1322. "id": 3,
  1323. "name": "plat",
  1324. "type": {
  1325. "type": "String"
  1326. }
  1327. },
  1328. {
  1329. "id": 4,
  1330. "name": "device",
  1331. "type": {
  1332. "type": "String"
  1333. }
  1334. },
  1335. {
  1336. "id": 5,
  1337. "name": "parms",
  1338. "type": {
  1339. "type": "Array",
  1340. "elementType": {
  1341. "type": "String"
  1342. }
  1343. }
  1344. }
  1345. ]
  1346. },
  1347. "player/PtlPlayerLogin/ResPlayerLogin": {
  1348. "type": "Interface",
  1349. "properties": [
  1350. {
  1351. "id": 0,
  1352. "name": "uid",
  1353. "type": {
  1354. "type": "String"
  1355. }
  1356. },
  1357. {
  1358. "id": 1,
  1359. "name": "sid",
  1360. "type": {
  1361. "type": "String"
  1362. }
  1363. },
  1364. {
  1365. "id": 2,
  1366. "name": "list",
  1367. "type": {
  1368. "type": "Interface",
  1369. "indexSignature": {
  1370. "keyType": "String",
  1371. "type": {
  1372. "type": "Reference",
  1373. "target": "player/PtlPlayerLogin/ResLoginList"
  1374. }
  1375. }
  1376. }
  1377. },
  1378. {
  1379. "id": 3,
  1380. "name": "token",
  1381. "type": {
  1382. "type": "String"
  1383. }
  1384. },
  1385. {
  1386. "id": 4,
  1387. "name": "qufuList",
  1388. "type": {
  1389. "type": "Interface",
  1390. "indexSignature": {
  1391. "keyType": "String",
  1392. "type": {
  1393. "type": "Reference",
  1394. "target": "player/PtlPlayerLogin/qufuInfo"
  1395. }
  1396. }
  1397. }
  1398. },
  1399. {
  1400. "id": 5,
  1401. "name": "wsUrl",
  1402. "type": {
  1403. "type": "String"
  1404. }
  1405. }
  1406. ]
  1407. },
  1408. "player/PtlPlayerLogin/ResLoginList": {
  1409. "type": "Interface",
  1410. "properties": [
  1411. {
  1412. "id": 0,
  1413. "name": "uuid",
  1414. "type": {
  1415. "type": "String"
  1416. }
  1417. },
  1418. {
  1419. "id": 1,
  1420. "name": "name",
  1421. "type": {
  1422. "type": "String"
  1423. }
  1424. },
  1425. {
  1426. "id": 2,
  1427. "name": "level",
  1428. "type": {
  1429. "type": "Number"
  1430. }
  1431. },
  1432. {
  1433. "id": 3,
  1434. "name": "lastlogin",
  1435. "type": {
  1436. "type": "Number"
  1437. }
  1438. }
  1439. ]
  1440. },
  1441. "player/PtlPlayerLogin/qufuInfo": {
  1442. "type": "Interface",
  1443. "properties": [
  1444. {
  1445. "id": 0,
  1446. "name": "sid",
  1447. "type": {
  1448. "type": "String"
  1449. }
  1450. },
  1451. {
  1452. "id": 1,
  1453. "name": "name",
  1454. "type": {
  1455. "type": "String"
  1456. }
  1457. },
  1458. {
  1459. "id": 2,
  1460. "name": "sName",
  1461. "type": {
  1462. "type": "String"
  1463. }
  1464. },
  1465. {
  1466. "id": 3,
  1467. "name": "openAt",
  1468. "type": {
  1469. "type": "Number"
  1470. }
  1471. },
  1472. {
  1473. "id": 4,
  1474. "name": "status",
  1475. "type": {
  1476. "type": "String"
  1477. }
  1478. },
  1479. {
  1480. "id": 5,
  1481. "name": "heid",
  1482. "type": {
  1483. "type": "String"
  1484. }
  1485. },
  1486. {
  1487. "id": 6,
  1488. "name": "suofu",
  1489. "type": {
  1490. "type": "String"
  1491. }
  1492. },
  1493. {
  1494. "id": 7,
  1495. "name": "skin",
  1496. "type": {
  1497. "type": "String"
  1498. }
  1499. }
  1500. ]
  1501. },
  1502. "task/PtlTaskInfo/ReqTaskInfo": {
  1503. "type": "Interface"
  1504. },
  1505. "task/PtlTaskInfo/ResTaskInfo": {
  1506. "type": "Interface",
  1507. "properties": [
  1508. {
  1509. "id": 0,
  1510. "name": "id",
  1511. "type": {
  1512. "type": "Number"
  1513. }
  1514. },
  1515. {
  1516. "id": 1,
  1517. "name": "cons",
  1518. "type": {
  1519. "type": "Number"
  1520. }
  1521. }
  1522. ]
  1523. },
  1524. "task/PtlTaskRwd/ReqTaskRwd": {
  1525. "type": "Interface"
  1526. },
  1527. "task/PtlTaskRwd/ResTaskRwd": {
  1528. "type": "Interface",
  1529. "properties": [
  1530. {
  1531. "id": 0,
  1532. "name": "id",
  1533. "type": {
  1534. "type": "Number"
  1535. }
  1536. },
  1537. {
  1538. "id": 1,
  1539. "name": "cons",
  1540. "type": {
  1541. "type": "Number"
  1542. }
  1543. }
  1544. ]
  1545. },
  1546. "user/PtlUserFight/ReqUserFight": {
  1547. "type": "Interface"
  1548. },
  1549. "user/PtlUserFight/ResUserFight": {
  1550. "type": "Interface",
  1551. "properties": [
  1552. {
  1553. "id": 0,
  1554. "name": "fightStart",
  1555. "type": {
  1556. "type": "Reference",
  1557. "target": "user/PtlUserFight/FightStart"
  1558. }
  1559. },
  1560. {
  1561. "id": 1,
  1562. "name": "win",
  1563. "type": {
  1564. "type": "Number"
  1565. }
  1566. },
  1567. {
  1568. "id": 2,
  1569. "name": "log",
  1570. "type": {
  1571. "type": "Interface",
  1572. "indexSignature": {
  1573. "keyType": "String",
  1574. "type": {
  1575. "type": "Array",
  1576. "elementType": {
  1577. "type": "Reference",
  1578. "target": "user/PtlUserFight/fightLogOne"
  1579. }
  1580. }
  1581. }
  1582. }
  1583. }
  1584. ]
  1585. },
  1586. "user/PtlUserFight/FightStart": {
  1587. "type": "Interface",
  1588. "properties": [
  1589. {
  1590. "id": 0,
  1591. "name": "from",
  1592. "type": {
  1593. "type": "String"
  1594. }
  1595. },
  1596. {
  1597. "id": 1,
  1598. "name": "seed",
  1599. "type": {
  1600. "type": "Number"
  1601. }
  1602. },
  1603. {
  1604. "id": 2,
  1605. "name": "teams",
  1606. "type": {
  1607. "type": "Interface",
  1608. "indexSignature": {
  1609. "keyType": "String",
  1610. "type": {
  1611. "type": "Reference",
  1612. "target": "user/PtlUserFight/FightTeam"
  1613. }
  1614. }
  1615. }
  1616. }
  1617. ]
  1618. },
  1619. "user/PtlUserFight/FightTeam": {
  1620. "type": "Interface",
  1621. "properties": [
  1622. {
  1623. "id": 0,
  1624. "name": "fid",
  1625. "type": {
  1626. "type": "String"
  1627. }
  1628. },
  1629. {
  1630. "id": 1,
  1631. "name": "eps",
  1632. "type": {
  1633. "type": "Interface",
  1634. "indexSignature": {
  1635. "keyType": "String",
  1636. "type": {
  1637. "type": "Number"
  1638. }
  1639. }
  1640. }
  1641. }
  1642. ]
  1643. },
  1644. "user/PtlUserFight/fightLogOne": {
  1645. "type": "Interface",
  1646. "properties": [
  1647. {
  1648. "id": 0,
  1649. "name": "aType",
  1650. "type": {
  1651. "type": "Reference",
  1652. "target": "user/PtlUserFight/ActionType"
  1653. }
  1654. },
  1655. {
  1656. "id": 1,
  1657. "name": "atker",
  1658. "type": {
  1659. "type": "Reference",
  1660. "target": "user/PtlUserFight/fightLogOneData"
  1661. }
  1662. },
  1663. {
  1664. "id": 2,
  1665. "name": "target",
  1666. "type": {
  1667. "type": "Array",
  1668. "elementType": {
  1669. "type": "Reference",
  1670. "target": "user/PtlUserFight/fightLogOneData"
  1671. }
  1672. }
  1673. }
  1674. ]
  1675. },
  1676. "user/PtlUserFight/ActionType": {
  1677. "type": "Enum",
  1678. "members": [
  1679. {
  1680. "id": 0,
  1681. "value": "wu"
  1682. },
  1683. {
  1684. "id": 1,
  1685. "value": "0"
  1686. },
  1687. {
  1688. "id": 2,
  1689. "value": "1"
  1690. },
  1691. {
  1692. "id": 3,
  1693. "value": "2"
  1694. },
  1695. {
  1696. "id": 4,
  1697. "value": "3"
  1698. },
  1699. {
  1700. "id": 5,
  1701. "value": "999"
  1702. }
  1703. ]
  1704. },
  1705. "user/PtlUserFight/fightLogOneData": {
  1706. "type": "Interface",
  1707. "properties": [
  1708. {
  1709. "id": 0,
  1710. "name": "iid",
  1711. "type": {
  1712. "type": "String"
  1713. }
  1714. },
  1715. {
  1716. "id": 1,
  1717. "name": "hp",
  1718. "type": {
  1719. "type": "Number"
  1720. }
  1721. },
  1722. {
  1723. "id": 2,
  1724. "name": "buff",
  1725. "type": {
  1726. "type": "Array",
  1727. "elementType": {
  1728. "type": "Tuple",
  1729. "elementTypes": [
  1730. {
  1731. "type": "String"
  1732. },
  1733. {
  1734. "type": "Number"
  1735. }
  1736. ]
  1737. }
  1738. }
  1739. },
  1740. {
  1741. "id": 3,
  1742. "name": "effect",
  1743. "type": {
  1744. "type": "Array",
  1745. "elementType": {
  1746. "type": "Tuple",
  1747. "elementTypes": [
  1748. {
  1749. "type": "String"
  1750. },
  1751. {
  1752. "type": "Number"
  1753. }
  1754. ]
  1755. }
  1756. }
  1757. }
  1758. ]
  1759. },
  1760. "user/PtlUserLogin/ReqUserLogin": {
  1761. "type": "Interface",
  1762. "properties": [
  1763. {
  1764. "id": 0,
  1765. "name": "sid",
  1766. "type": {
  1767. "type": "String"
  1768. }
  1769. },
  1770. {
  1771. "id": 1,
  1772. "name": "uid",
  1773. "type": {
  1774. "type": "String"
  1775. }
  1776. },
  1777. {
  1778. "id": 2,
  1779. "name": "token",
  1780. "type": {
  1781. "type": "String"
  1782. }
  1783. }
  1784. ]
  1785. },
  1786. "user/PtlUserLogin/ResUserLogin": {
  1787. "type": "Interface",
  1788. "properties": [
  1789. {
  1790. "id": 0,
  1791. "name": "uuid",
  1792. "type": {
  1793. "type": "String"
  1794. }
  1795. },
  1796. {
  1797. "id": 1,
  1798. "name": "sid",
  1799. "type": {
  1800. "type": "String"
  1801. }
  1802. },
  1803. {
  1804. "id": 2,
  1805. "name": "name",
  1806. "type": {
  1807. "type": "String"
  1808. }
  1809. },
  1810. {
  1811. "id": 3,
  1812. "name": "head",
  1813. "type": {
  1814. "type": "String"
  1815. }
  1816. },
  1817. {
  1818. "id": 4,
  1819. "name": "wxhead",
  1820. "type": {
  1821. "type": "String"
  1822. }
  1823. },
  1824. {
  1825. "id": 5,
  1826. "name": "sex",
  1827. "type": {
  1828. "type": "Number"
  1829. }
  1830. },
  1831. {
  1832. "id": 6,
  1833. "name": "level",
  1834. "type": {
  1835. "type": "Number"
  1836. }
  1837. },
  1838. {
  1839. "id": 7,
  1840. "name": "regtime",
  1841. "type": {
  1842. "type": "Number"
  1843. }
  1844. },
  1845. {
  1846. "id": 8,
  1847. "name": "loginTime",
  1848. "type": {
  1849. "type": "Number"
  1850. }
  1851. },
  1852. {
  1853. "id": 9,
  1854. "name": "lastlogin",
  1855. "type": {
  1856. "type": "Number"
  1857. }
  1858. },
  1859. {
  1860. "id": 10,
  1861. "name": "lang",
  1862. "type": {
  1863. "type": "String"
  1864. }
  1865. },
  1866. {
  1867. "id": 11,
  1868. "name": "iscz",
  1869. "type": {
  1870. "type": "Number"
  1871. }
  1872. },
  1873. {
  1874. "id": 12,
  1875. "name": "rmbcz",
  1876. "type": {
  1877. "type": "Number"
  1878. }
  1879. },
  1880. {
  1881. "id": 13,
  1882. "name": "power",
  1883. "type": {
  1884. "type": "Number"
  1885. }
  1886. }
  1887. ]
  1888. },
  1889. "user/PtlUserSetName/ReqUserSetName": {
  1890. "type": "Interface",
  1891. "properties": [
  1892. {
  1893. "id": 0,
  1894. "name": "name",
  1895. "type": {
  1896. "type": "String"
  1897. }
  1898. }
  1899. ]
  1900. },
  1901. "user/PtlUserSetName/ResUserSetName": {
  1902. "type": "Interface",
  1903. "properties": [
  1904. {
  1905. "id": 0,
  1906. "name": "name",
  1907. "type": {
  1908. "type": "String"
  1909. }
  1910. }
  1911. ]
  1912. },
  1913. "user/server/MsgUserUplevel_s/MsgUserUplevel_s": {
  1914. "type": "Interface",
  1915. "properties": [
  1916. {
  1917. "id": 0,
  1918. "name": "level",
  1919. "type": {
  1920. "type": "Number"
  1921. }
  1922. },
  1923. {
  1924. "id": 1,
  1925. "name": "exp",
  1926. "type": {
  1927. "type": "Number"
  1928. }
  1929. }
  1930. ]
  1931. }
  1932. }
  1933. };