serviceProto.ts 66 KB

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