serviceProto.ts 87 KB

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