openapi.json 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987
  1. {
  2. "openapi": "3.0.0",
  3. "info": {
  4. "title": "TSRPC Open API",
  5. "version": "1.0.0"
  6. },
  7. "paths": {
  8. "/admin/addBuMa": {
  9. "post": {
  10. "tags": [
  11. "admin"
  12. ],
  13. "operationId": "admin/addBuMa",
  14. "requestBody": {
  15. "description": "Req<addBuMa>",
  16. "content": {
  17. "application/json": {
  18. "schema": {
  19. "$ref": "#/components/schemas/admin_PtladdBuMa_ReqaddBuMa"
  20. }
  21. }
  22. }
  23. },
  24. "responses": {
  25. "200": {
  26. "description": "Success",
  27. "content": {
  28. "application/json": {
  29. "schema": {
  30. "type": "object",
  31. "description": "ApiReturn<ResaddBuMa>",
  32. "properties": {
  33. "isSucc": {
  34. "type": "boolean",
  35. "enum": [
  36. true
  37. ],
  38. "default": true
  39. },
  40. "res": {
  41. "$ref": "#/components/schemas/admin_PtladdBuMa_ResaddBuMa"
  42. }
  43. }
  44. }
  45. }
  46. }
  47. },
  48. "default": {
  49. "description": "Error",
  50. "$ref": "#/components/responses/error"
  51. }
  52. }
  53. }
  54. },
  55. "/admin/addCode": {
  56. "post": {
  57. "tags": [
  58. "admin"
  59. ],
  60. "operationId": "admin/addCode",
  61. "requestBody": {
  62. "description": "Req<addCode>",
  63. "content": {
  64. "application/json": {
  65. "schema": {
  66. "$ref": "#/components/schemas/admin_PtladdCode_ReqaddCode"
  67. }
  68. }
  69. }
  70. },
  71. "responses": {
  72. "200": {
  73. "description": "Success",
  74. "content": {
  75. "application/json": {
  76. "schema": {
  77. "type": "object",
  78. "description": "ApiReturn<ResaddCode>",
  79. "properties": {
  80. "isSucc": {
  81. "type": "boolean",
  82. "enum": [
  83. true
  84. ],
  85. "default": true
  86. },
  87. "res": {
  88. "$ref": "#/components/schemas/admin_PtladdCode_ResaddCode"
  89. }
  90. }
  91. }
  92. }
  93. }
  94. },
  95. "default": {
  96. "description": "Error",
  97. "$ref": "#/components/responses/error"
  98. }
  99. }
  100. }
  101. },
  102. "/admin/addMail": {
  103. "post": {
  104. "tags": [
  105. "admin"
  106. ],
  107. "operationId": "admin/addMail",
  108. "requestBody": {
  109. "description": "Req<addMail>",
  110. "content": {
  111. "application/json": {
  112. "schema": {
  113. "$ref": "#/components/schemas/admin_PtladdMail_ReqaddMail"
  114. }
  115. }
  116. }
  117. },
  118. "responses": {
  119. "200": {
  120. "description": "Success",
  121. "content": {
  122. "application/json": {
  123. "schema": {
  124. "type": "object",
  125. "description": "ApiReturn<ResaddMail>",
  126. "properties": {
  127. "isSucc": {
  128. "type": "boolean",
  129. "enum": [
  130. true
  131. ],
  132. "default": true
  133. },
  134. "res": {
  135. "$ref": "#/components/schemas/admin_PtladdMail_ResaddMail"
  136. }
  137. }
  138. }
  139. }
  140. }
  141. },
  142. "default": {
  143. "description": "Error",
  144. "$ref": "#/components/responses/error"
  145. }
  146. }
  147. }
  148. },
  149. "/admin/cacheVer": {
  150. "post": {
  151. "tags": [
  152. "admin"
  153. ],
  154. "operationId": "admin/cacheVer",
  155. "requestBody": {
  156. "description": "Req<cacheVer>",
  157. "content": {
  158. "application/json": {
  159. "schema": {
  160. "$ref": "#/components/schemas/admin_PtlcacheVer_ReqcacheVer"
  161. }
  162. }
  163. }
  164. },
  165. "responses": {
  166. "200": {
  167. "description": "Success",
  168. "content": {
  169. "application/json": {
  170. "schema": {
  171. "type": "object",
  172. "description": "ApiReturn<RescacheVer>",
  173. "properties": {
  174. "isSucc": {
  175. "type": "boolean",
  176. "enum": [
  177. true
  178. ],
  179. "default": true
  180. },
  181. "res": {
  182. "$ref": "#/components/schemas/admin_PtlcacheVer_RescacheVer"
  183. }
  184. }
  185. }
  186. }
  187. }
  188. },
  189. "default": {
  190. "description": "Error",
  191. "$ref": "#/components/responses/error"
  192. }
  193. }
  194. }
  195. },
  196. "/admin/deleteCode": {
  197. "post": {
  198. "tags": [
  199. "admin"
  200. ],
  201. "operationId": "admin/deleteCode",
  202. "requestBody": {
  203. "description": "Req<deleteCode>",
  204. "content": {
  205. "application/json": {
  206. "schema": {
  207. "$ref": "#/components/schemas/admin_PtldeleteCode_ReqdeleteCode"
  208. }
  209. }
  210. }
  211. },
  212. "responses": {
  213. "200": {
  214. "description": "Success",
  215. "content": {
  216. "application/json": {
  217. "schema": {
  218. "type": "object",
  219. "description": "ApiReturn<ResdeleteCode>",
  220. "properties": {
  221. "isSucc": {
  222. "type": "boolean",
  223. "enum": [
  224. true
  225. ],
  226. "default": true
  227. },
  228. "res": {
  229. "$ref": "#/components/schemas/admin_PtldeleteCode_ResdeleteCode"
  230. }
  231. }
  232. }
  233. }
  234. }
  235. },
  236. "default": {
  237. "description": "Error",
  238. "$ref": "#/components/responses/error"
  239. }
  240. }
  241. }
  242. },
  243. "/admin/deleteMail": {
  244. "post": {
  245. "tags": [
  246. "admin"
  247. ],
  248. "operationId": "admin/deleteMail",
  249. "requestBody": {
  250. "description": "Req<deleteMail>",
  251. "content": {
  252. "application/json": {
  253. "schema": {
  254. "$ref": "#/components/schemas/admin_PtldeleteMail_ReqdeleteMail"
  255. }
  256. }
  257. }
  258. },
  259. "responses": {
  260. "200": {
  261. "description": "Success",
  262. "content": {
  263. "application/json": {
  264. "schema": {
  265. "type": "object",
  266. "description": "ApiReturn<ResdeleteMail>",
  267. "properties": {
  268. "isSucc": {
  269. "type": "boolean",
  270. "enum": [
  271. true
  272. ],
  273. "default": true
  274. },
  275. "res": {
  276. "$ref": "#/components/schemas/admin_PtldeleteMail_ResdeleteMail"
  277. }
  278. }
  279. }
  280. }
  281. }
  282. },
  283. "default": {
  284. "description": "Error",
  285. "$ref": "#/components/responses/error"
  286. }
  287. }
  288. }
  289. },
  290. "/admin/deleteQuFu": {
  291. "post": {
  292. "tags": [
  293. "admin"
  294. ],
  295. "operationId": "admin/deleteQuFu",
  296. "requestBody": {
  297. "description": "Req<deleteQuFu>",
  298. "content": {
  299. "application/json": {
  300. "schema": {
  301. "$ref": "#/components/schemas/admin_PtldeleteQuFu_ReqdeleteQuFu"
  302. }
  303. }
  304. }
  305. },
  306. "responses": {
  307. "200": {
  308. "description": "Success",
  309. "content": {
  310. "application/json": {
  311. "schema": {
  312. "type": "object",
  313. "description": "ApiReturn<ResdeleteQuFu>",
  314. "properties": {
  315. "isSucc": {
  316. "type": "boolean",
  317. "enum": [
  318. true
  319. ],
  320. "default": true
  321. },
  322. "res": {
  323. "$ref": "#/components/schemas/admin_PtldeleteQuFu_ResdeleteQuFu"
  324. }
  325. }
  326. }
  327. }
  328. }
  329. },
  330. "default": {
  331. "description": "Error",
  332. "$ref": "#/components/responses/error"
  333. }
  334. }
  335. }
  336. },
  337. "/admin/deleteSetting": {
  338. "post": {
  339. "tags": [
  340. "admin"
  341. ],
  342. "operationId": "admin/deleteSetting",
  343. "requestBody": {
  344. "description": "Req<deleteSetting>",
  345. "content": {
  346. "application/json": {
  347. "schema": {
  348. "$ref": "#/components/schemas/admin_PtldeleteSetting_ReqdeleteSetting"
  349. }
  350. }
  351. }
  352. },
  353. "responses": {
  354. "200": {
  355. "description": "Success",
  356. "content": {
  357. "application/json": {
  358. "schema": {
  359. "type": "object",
  360. "description": "ApiReturn<ResdeleteSetting>",
  361. "properties": {
  362. "isSucc": {
  363. "type": "boolean",
  364. "enum": [
  365. true
  366. ],
  367. "default": true
  368. },
  369. "res": {
  370. "$ref": "#/components/schemas/admin_PtldeleteSetting_ResdeleteSetting"
  371. }
  372. }
  373. }
  374. }
  375. }
  376. },
  377. "default": {
  378. "description": "Error",
  379. "$ref": "#/components/responses/error"
  380. }
  381. }
  382. }
  383. },
  384. "/admin/getCode": {
  385. "post": {
  386. "tags": [
  387. "admin"
  388. ],
  389. "operationId": "admin/getCode",
  390. "requestBody": {
  391. "description": "Req<getCode>",
  392. "content": {
  393. "application/json": {
  394. "schema": {
  395. "$ref": "#/components/schemas/admin_PtlgetCode_ReqgetCode"
  396. }
  397. }
  398. }
  399. },
  400. "responses": {
  401. "200": {
  402. "description": "Success",
  403. "content": {
  404. "application/json": {
  405. "schema": {
  406. "type": "object",
  407. "description": "ApiReturn<ResgetCode>",
  408. "properties": {
  409. "isSucc": {
  410. "type": "boolean",
  411. "enum": [
  412. true
  413. ],
  414. "default": true
  415. },
  416. "res": {
  417. "$ref": "#/components/schemas/admin_PtlgetCode_ResgetCode"
  418. }
  419. }
  420. }
  421. }
  422. }
  423. },
  424. "default": {
  425. "description": "Error",
  426. "$ref": "#/components/responses/error"
  427. }
  428. }
  429. }
  430. },
  431. "/admin/getCodeMa": {
  432. "post": {
  433. "tags": [
  434. "admin"
  435. ],
  436. "operationId": "admin/getCodeMa",
  437. "requestBody": {
  438. "description": "Req<getCodeMa>",
  439. "content": {
  440. "application/json": {
  441. "schema": {
  442. "$ref": "#/components/schemas/admin_PtlgetCodeMa_ReqgetCodeMa"
  443. }
  444. }
  445. }
  446. },
  447. "responses": {
  448. "200": {
  449. "description": "Success",
  450. "content": {
  451. "application/json": {
  452. "schema": {
  453. "type": "object",
  454. "description": "ApiReturn<ResgetCodeMa>",
  455. "properties": {
  456. "isSucc": {
  457. "type": "boolean",
  458. "enum": [
  459. true
  460. ],
  461. "default": true
  462. },
  463. "res": {
  464. "$ref": "#/components/schemas/admin_PtlgetCodeMa_ResgetCodeMa"
  465. }
  466. }
  467. }
  468. }
  469. }
  470. },
  471. "default": {
  472. "description": "Error",
  473. "$ref": "#/components/responses/error"
  474. }
  475. }
  476. }
  477. },
  478. "/admin/getMail": {
  479. "post": {
  480. "tags": [
  481. "admin"
  482. ],
  483. "operationId": "admin/getMail",
  484. "requestBody": {
  485. "description": "Req<getMail>",
  486. "content": {
  487. "application/json": {
  488. "schema": {
  489. "$ref": "#/components/schemas/admin_PtlgetMail_ReqgetMail"
  490. }
  491. }
  492. }
  493. },
  494. "responses": {
  495. "200": {
  496. "description": "Success",
  497. "content": {
  498. "application/json": {
  499. "schema": {
  500. "type": "object",
  501. "description": "ApiReturn<ResgetMail>",
  502. "properties": {
  503. "isSucc": {
  504. "type": "boolean",
  505. "enum": [
  506. true
  507. ],
  508. "default": true
  509. },
  510. "res": {
  511. "$ref": "#/components/schemas/admin_PtlgetMail_ResgetMail"
  512. }
  513. }
  514. }
  515. }
  516. }
  517. },
  518. "default": {
  519. "description": "Error",
  520. "$ref": "#/components/responses/error"
  521. }
  522. }
  523. }
  524. },
  525. "/admin/getNeed": {
  526. "post": {
  527. "tags": [
  528. "admin"
  529. ],
  530. "operationId": "admin/getNeed",
  531. "requestBody": {
  532. "description": "Req<getNeed>",
  533. "content": {
  534. "application/json": {
  535. "schema": {
  536. "$ref": "#/components/schemas/admin_PtlgetNeed_ReqgetNeed"
  537. }
  538. }
  539. }
  540. },
  541. "responses": {
  542. "200": {
  543. "description": "Success",
  544. "content": {
  545. "application/json": {
  546. "schema": {
  547. "type": "object",
  548. "description": "ApiReturn<ResgetNeed>",
  549. "properties": {
  550. "isSucc": {
  551. "type": "boolean",
  552. "enum": [
  553. true
  554. ],
  555. "default": true
  556. },
  557. "res": {
  558. "$ref": "#/components/schemas/admin_PtlgetNeed_ResgetNeed"
  559. }
  560. }
  561. }
  562. }
  563. }
  564. },
  565. "default": {
  566. "description": "Error",
  567. "$ref": "#/components/responses/error"
  568. }
  569. }
  570. }
  571. },
  572. "/admin/getQuFu": {
  573. "post": {
  574. "tags": [
  575. "admin"
  576. ],
  577. "operationId": "admin/getQuFu",
  578. "requestBody": {
  579. "description": "Req<getQuFu>",
  580. "content": {
  581. "application/json": {
  582. "schema": {
  583. "$ref": "#/components/schemas/admin_PtlgetQuFu_ReqgetQuFu"
  584. }
  585. }
  586. }
  587. },
  588. "responses": {
  589. "200": {
  590. "description": "Success",
  591. "content": {
  592. "application/json": {
  593. "schema": {
  594. "type": "object",
  595. "description": "ApiReturn<ResgetQuFu>",
  596. "properties": {
  597. "isSucc": {
  598. "type": "boolean",
  599. "enum": [
  600. true
  601. ],
  602. "default": true
  603. },
  604. "res": {
  605. "$ref": "#/components/schemas/admin_PtlgetQuFu_ResgetQuFu"
  606. }
  607. }
  608. }
  609. }
  610. }
  611. },
  612. "default": {
  613. "description": "Error",
  614. "$ref": "#/components/responses/error"
  615. }
  616. }
  617. }
  618. },
  619. "/admin/getSetting": {
  620. "post": {
  621. "tags": [
  622. "admin"
  623. ],
  624. "operationId": "admin/getSetting",
  625. "requestBody": {
  626. "description": "Req<getSetting>",
  627. "content": {
  628. "application/json": {
  629. "schema": {
  630. "$ref": "#/components/schemas/admin_PtlgetSetting_ReqgetSetting"
  631. }
  632. }
  633. }
  634. },
  635. "responses": {
  636. "200": {
  637. "description": "Success",
  638. "content": {
  639. "application/json": {
  640. "schema": {
  641. "type": "object",
  642. "description": "ApiReturn<ResgetSetting>",
  643. "properties": {
  644. "isSucc": {
  645. "type": "boolean",
  646. "enum": [
  647. true
  648. ],
  649. "default": true
  650. },
  651. "res": {
  652. "$ref": "#/components/schemas/admin_PtlgetSetting_ResgetSetting"
  653. }
  654. }
  655. }
  656. }
  657. }
  658. },
  659. "default": {
  660. "description": "Error",
  661. "$ref": "#/components/responses/error"
  662. }
  663. }
  664. }
  665. },
  666. "/admin/getVer": {
  667. "post": {
  668. "tags": [
  669. "admin"
  670. ],
  671. "operationId": "admin/getVer",
  672. "requestBody": {
  673. "description": "Req<getVer>",
  674. "content": {
  675. "application/json": {
  676. "schema": {
  677. "$ref": "#/components/schemas/admin_PtlgetVer_ReqgetVer"
  678. }
  679. }
  680. }
  681. },
  682. "responses": {
  683. "200": {
  684. "description": "Success",
  685. "content": {
  686. "application/json": {
  687. "schema": {
  688. "type": "object",
  689. "description": "ApiReturn<ResgetVer>",
  690. "properties": {
  691. "isSucc": {
  692. "type": "boolean",
  693. "enum": [
  694. true
  695. ],
  696. "default": true
  697. },
  698. "res": {
  699. "$ref": "#/components/schemas/admin_PtlgetVer_ResgetVer"
  700. }
  701. }
  702. }
  703. }
  704. }
  705. },
  706. "default": {
  707. "description": "Error",
  708. "$ref": "#/components/responses/error"
  709. }
  710. }
  711. }
  712. },
  713. "/admin/huodongAdd": {
  714. "post": {
  715. "tags": [
  716. "admin"
  717. ],
  718. "operationId": "admin/huodongAdd",
  719. "requestBody": {
  720. "description": "Req<huodongAdd>",
  721. "content": {
  722. "application/json": {
  723. "schema": {
  724. "$ref": "#/components/schemas/admin_PtlhuodongAdd_ReqhuodongAdd"
  725. }
  726. }
  727. }
  728. },
  729. "responses": {
  730. "200": {
  731. "description": "Success",
  732. "content": {
  733. "application/json": {
  734. "schema": {
  735. "type": "object",
  736. "description": "ApiReturn<ReshuodongAdd>",
  737. "properties": {
  738. "isSucc": {
  739. "type": "boolean",
  740. "enum": [
  741. true
  742. ],
  743. "default": true
  744. },
  745. "res": {
  746. "$ref": "#/components/schemas/admin_PtlhuodongAdd_ReshuodongAdd"
  747. }
  748. }
  749. }
  750. }
  751. }
  752. },
  753. "default": {
  754. "description": "Error",
  755. "$ref": "#/components/responses/error"
  756. }
  757. }
  758. }
  759. },
  760. "/admin/huodongDelete": {
  761. "post": {
  762. "tags": [
  763. "admin"
  764. ],
  765. "operationId": "admin/huodongDelete",
  766. "requestBody": {
  767. "description": "Req<huodongDelete>",
  768. "content": {
  769. "application/json": {
  770. "schema": {
  771. "$ref": "#/components/schemas/admin_PtlhuodongDelete_ReqhuodongDelete"
  772. }
  773. }
  774. }
  775. },
  776. "responses": {
  777. "200": {
  778. "description": "Success",
  779. "content": {
  780. "application/json": {
  781. "schema": {
  782. "type": "object",
  783. "description": "ApiReturn<ReshuodongDelete>",
  784. "properties": {
  785. "isSucc": {
  786. "type": "boolean",
  787. "enum": [
  788. true
  789. ],
  790. "default": true
  791. },
  792. "res": {
  793. "$ref": "#/components/schemas/admin_PtlhuodongDelete_ReshuodongDelete"
  794. }
  795. }
  796. }
  797. }
  798. }
  799. },
  800. "default": {
  801. "description": "Error",
  802. "$ref": "#/components/responses/error"
  803. }
  804. }
  805. }
  806. },
  807. "/admin/huodongEdit": {
  808. "post": {
  809. "tags": [
  810. "admin"
  811. ],
  812. "operationId": "admin/huodongEdit",
  813. "requestBody": {
  814. "description": "Req<huodongEdit>",
  815. "content": {
  816. "application/json": {
  817. "schema": {
  818. "$ref": "#/components/schemas/admin_PtlhuodongEdit_ReqhuodongEdit"
  819. }
  820. }
  821. }
  822. },
  823. "responses": {
  824. "200": {
  825. "description": "Success",
  826. "content": {
  827. "application/json": {
  828. "schema": {
  829. "type": "object",
  830. "description": "ApiReturn<ReshuodongEdit>",
  831. "properties": {
  832. "isSucc": {
  833. "type": "boolean",
  834. "enum": [
  835. true
  836. ],
  837. "default": true
  838. },
  839. "res": {
  840. "$ref": "#/components/schemas/admin_PtlhuodongEdit_ReshuodongEdit"
  841. }
  842. }
  843. }
  844. }
  845. }
  846. },
  847. "default": {
  848. "description": "Error",
  849. "$ref": "#/components/responses/error"
  850. }
  851. }
  852. }
  853. },
  854. "/admin/huodongFind": {
  855. "post": {
  856. "tags": [
  857. "admin"
  858. ],
  859. "operationId": "admin/huodongFind",
  860. "requestBody": {
  861. "description": "Req<huodongFind>",
  862. "content": {
  863. "application/json": {
  864. "schema": {
  865. "$ref": "#/components/schemas/admin_PtlhuodongFind_ReqhuodongFind"
  866. }
  867. }
  868. }
  869. },
  870. "responses": {
  871. "200": {
  872. "description": "Success",
  873. "content": {
  874. "application/json": {
  875. "schema": {
  876. "type": "object",
  877. "description": "ApiReturn<ReshuodongFind>",
  878. "properties": {
  879. "isSucc": {
  880. "type": "boolean",
  881. "enum": [
  882. true
  883. ],
  884. "default": true
  885. },
  886. "res": {
  887. "$ref": "#/components/schemas/admin_PtlhuodongFind_ReshuodongFind"
  888. }
  889. }
  890. }
  891. }
  892. }
  893. },
  894. "default": {
  895. "description": "Error",
  896. "$ref": "#/components/responses/error"
  897. }
  898. }
  899. }
  900. },
  901. "/admin/roleData": {
  902. "post": {
  903. "tags": [
  904. "admin"
  905. ],
  906. "operationId": "admin/roleData",
  907. "requestBody": {
  908. "description": "Req<roleData>",
  909. "content": {
  910. "application/json": {
  911. "schema": {
  912. "$ref": "#/components/schemas/admin_PtlroleData_ReqroleData"
  913. }
  914. }
  915. }
  916. },
  917. "responses": {
  918. "200": {
  919. "description": "Success",
  920. "content": {
  921. "application/json": {
  922. "schema": {
  923. "type": "object",
  924. "description": "ApiReturn<ResroleData>",
  925. "properties": {
  926. "isSucc": {
  927. "type": "boolean",
  928. "enum": [
  929. true
  930. ],
  931. "default": true
  932. },
  933. "res": {
  934. "$ref": "#/components/schemas/admin_PtlroleData_ResroleData"
  935. }
  936. }
  937. }
  938. }
  939. }
  940. },
  941. "default": {
  942. "description": "Error",
  943. "$ref": "#/components/responses/error"
  944. }
  945. }
  946. }
  947. },
  948. "/admin/updateMail": {
  949. "post": {
  950. "tags": [
  951. "admin"
  952. ],
  953. "operationId": "admin/updateMail",
  954. "requestBody": {
  955. "description": "Req<updateMail>",
  956. "content": {
  957. "application/json": {
  958. "schema": {
  959. "$ref": "#/components/schemas/admin_PtlupdateMail_RequpdateMail"
  960. }
  961. }
  962. }
  963. },
  964. "responses": {
  965. "200": {
  966. "description": "Success",
  967. "content": {
  968. "application/json": {
  969. "schema": {
  970. "type": "object",
  971. "description": "ApiReturn<ResupdateMail>",
  972. "properties": {
  973. "isSucc": {
  974. "type": "boolean",
  975. "enum": [
  976. true
  977. ],
  978. "default": true
  979. },
  980. "res": {
  981. "$ref": "#/components/schemas/admin_PtlupdateMail_ResupdateMail"
  982. }
  983. }
  984. }
  985. }
  986. }
  987. },
  988. "default": {
  989. "description": "Error",
  990. "$ref": "#/components/responses/error"
  991. }
  992. }
  993. }
  994. },
  995. "/admin/updateQuFu": {
  996. "post": {
  997. "tags": [
  998. "admin"
  999. ],
  1000. "operationId": "admin/updateQuFu",
  1001. "requestBody": {
  1002. "description": "Req<updateQuFu>",
  1003. "content": {
  1004. "application/json": {
  1005. "schema": {
  1006. "$ref": "#/components/schemas/admin_PtlupdateQuFu_RequpdateQuFu"
  1007. }
  1008. }
  1009. }
  1010. },
  1011. "responses": {
  1012. "200": {
  1013. "description": "Success",
  1014. "content": {
  1015. "application/json": {
  1016. "schema": {
  1017. "type": "object",
  1018. "description": "ApiReturn<ResupdateQuFu>",
  1019. "properties": {
  1020. "isSucc": {
  1021. "type": "boolean",
  1022. "enum": [
  1023. true
  1024. ],
  1025. "default": true
  1026. },
  1027. "res": {
  1028. "$ref": "#/components/schemas/admin_PtlupdateQuFu_ResupdateQuFu"
  1029. }
  1030. }
  1031. }
  1032. }
  1033. }
  1034. },
  1035. "default": {
  1036. "description": "Error",
  1037. "$ref": "#/components/responses/error"
  1038. }
  1039. }
  1040. }
  1041. },
  1042. "/admin/updateSetting": {
  1043. "post": {
  1044. "tags": [
  1045. "admin"
  1046. ],
  1047. "operationId": "admin/updateSetting",
  1048. "requestBody": {
  1049. "description": "Req<updateSetting>",
  1050. "content": {
  1051. "application/json": {
  1052. "schema": {
  1053. "$ref": "#/components/schemas/admin_PtlupdateSetting_RequpdateSetting"
  1054. }
  1055. }
  1056. }
  1057. },
  1058. "responses": {
  1059. "200": {
  1060. "description": "Success",
  1061. "content": {
  1062. "application/json": {
  1063. "schema": {
  1064. "type": "object",
  1065. "description": "ApiReturn<ResupdateSetting>",
  1066. "properties": {
  1067. "isSucc": {
  1068. "type": "boolean",
  1069. "enum": [
  1070. true
  1071. ],
  1072. "default": true
  1073. },
  1074. "res": {
  1075. "$ref": "#/components/schemas/admin_PtlupdateSetting_ResupdateSetting"
  1076. }
  1077. }
  1078. }
  1079. }
  1080. }
  1081. },
  1082. "default": {
  1083. "description": "Error",
  1084. "$ref": "#/components/responses/error"
  1085. }
  1086. }
  1087. }
  1088. },
  1089. "/admin/xiazai": {
  1090. "post": {
  1091. "tags": [
  1092. "admin"
  1093. ],
  1094. "operationId": "admin/xiazai",
  1095. "requestBody": {
  1096. "description": "Req<xiazai>",
  1097. "content": {
  1098. "application/json": {
  1099. "schema": {
  1100. "$ref": "#/components/schemas/admin_Ptlxiazai_Reqxiazai"
  1101. }
  1102. }
  1103. }
  1104. },
  1105. "responses": {
  1106. "200": {
  1107. "description": "Success",
  1108. "content": {
  1109. "application/json": {
  1110. "schema": {
  1111. "type": "object",
  1112. "description": "ApiReturn<Resxiazai>",
  1113. "properties": {
  1114. "isSucc": {
  1115. "type": "boolean",
  1116. "enum": [
  1117. true
  1118. ],
  1119. "default": true
  1120. },
  1121. "res": {
  1122. "$ref": "#/components/schemas/admin_Ptlxiazai_Resxiazai"
  1123. }
  1124. }
  1125. }
  1126. }
  1127. }
  1128. },
  1129. "default": {
  1130. "description": "Error",
  1131. "$ref": "#/components/responses/error"
  1132. }
  1133. }
  1134. }
  1135. },
  1136. "/chat/ChatSend": {
  1137. "post": {
  1138. "tags": [
  1139. "chat"
  1140. ],
  1141. "operationId": "chat/ChatSend",
  1142. "requestBody": {
  1143. "description": "Req<ChatSend>",
  1144. "content": {
  1145. "application/json": {
  1146. "schema": {
  1147. "$ref": "#/components/schemas/chat_PtlChatSend_ReqChatSend"
  1148. }
  1149. }
  1150. }
  1151. },
  1152. "responses": {
  1153. "200": {
  1154. "description": "Success",
  1155. "content": {
  1156. "application/json": {
  1157. "schema": {
  1158. "type": "object",
  1159. "description": "ApiReturn<ResChatSend>",
  1160. "properties": {
  1161. "isSucc": {
  1162. "type": "boolean",
  1163. "enum": [
  1164. true
  1165. ],
  1166. "default": true
  1167. },
  1168. "res": {
  1169. "$ref": "#/components/schemas/chat_PtlChatSend_ResChatSend"
  1170. }
  1171. }
  1172. }
  1173. }
  1174. }
  1175. },
  1176. "default": {
  1177. "description": "Error",
  1178. "$ref": "#/components/responses/error"
  1179. }
  1180. }
  1181. }
  1182. },
  1183. "/eps/EpsInfo": {
  1184. "post": {
  1185. "tags": [
  1186. "eps"
  1187. ],
  1188. "operationId": "eps/EpsInfo",
  1189. "requestBody": {
  1190. "description": "Req<EpsInfo>",
  1191. "content": {
  1192. "application/json": {
  1193. "schema": {
  1194. "$ref": "#/components/schemas/eps_PtlEpsInfo_ReqEpsInfo"
  1195. }
  1196. }
  1197. }
  1198. },
  1199. "responses": {
  1200. "200": {
  1201. "description": "Success",
  1202. "content": {
  1203. "application/json": {
  1204. "schema": {
  1205. "type": "object",
  1206. "description": "ApiReturn<ResEpsInfo>",
  1207. "properties": {
  1208. "isSucc": {
  1209. "type": "boolean",
  1210. "enum": [
  1211. true
  1212. ],
  1213. "default": true
  1214. },
  1215. "res": {
  1216. "$ref": "#/components/schemas/eps_PtlEpsInfo_ResEpsInfo"
  1217. }
  1218. }
  1219. }
  1220. }
  1221. }
  1222. },
  1223. "default": {
  1224. "description": "Error",
  1225. "$ref": "#/components/responses/error"
  1226. }
  1227. }
  1228. }
  1229. },
  1230. "/fight/FightHc": {
  1231. "post": {
  1232. "tags": [
  1233. "fight"
  1234. ],
  1235. "operationId": "fight/FightHc",
  1236. "requestBody": {
  1237. "description": "Req<FightHc>",
  1238. "content": {
  1239. "application/json": {
  1240. "schema": {
  1241. "$ref": "#/components/schemas/fight_PtlFightHc_ReqFightHc"
  1242. }
  1243. }
  1244. }
  1245. },
  1246. "responses": {
  1247. "200": {
  1248. "description": "Success",
  1249. "content": {
  1250. "application/json": {
  1251. "schema": {
  1252. "type": "object",
  1253. "description": "ApiReturn<ResFightHc>",
  1254. "properties": {
  1255. "isSucc": {
  1256. "type": "boolean",
  1257. "enum": [
  1258. true
  1259. ],
  1260. "default": true
  1261. },
  1262. "res": {
  1263. "$ref": "#/components/schemas/fight_PtlFightHc_ResFightHc"
  1264. }
  1265. }
  1266. }
  1267. }
  1268. }
  1269. },
  1270. "default": {
  1271. "description": "Error",
  1272. "$ref": "#/components/responses/error"
  1273. }
  1274. }
  1275. }
  1276. },
  1277. "/fight/FightTest": {
  1278. "post": {
  1279. "tags": [
  1280. "fight"
  1281. ],
  1282. "operationId": "fight/FightTest",
  1283. "requestBody": {
  1284. "description": "Req<FightTest>",
  1285. "content": {
  1286. "application/json": {
  1287. "schema": {
  1288. "$ref": "#/components/schemas/fight_PtlFightTest_ReqFightTest"
  1289. }
  1290. }
  1291. }
  1292. },
  1293. "responses": {
  1294. "200": {
  1295. "description": "Success",
  1296. "content": {
  1297. "application/json": {
  1298. "schema": {
  1299. "type": "object",
  1300. "description": "ApiReturn<ResFightTest>",
  1301. "properties": {
  1302. "isSucc": {
  1303. "type": "boolean",
  1304. "enum": [
  1305. true
  1306. ],
  1307. "default": true
  1308. },
  1309. "res": {
  1310. "$ref": "#/components/schemas/fight_PtlFightTest_ResFightTest"
  1311. }
  1312. }
  1313. }
  1314. }
  1315. }
  1316. },
  1317. "default": {
  1318. "description": "Error",
  1319. "$ref": "#/components/responses/error"
  1320. }
  1321. }
  1322. }
  1323. },
  1324. "/hc/HcEmit": {
  1325. "post": {
  1326. "tags": [
  1327. "hc"
  1328. ],
  1329. "operationId": "hc/HcEmit",
  1330. "requestBody": {
  1331. "description": "Req<HcEmit>",
  1332. "content": {
  1333. "application/json": {
  1334. "schema": {
  1335. "$ref": "#/components/schemas/hc_PtlHcEmit_ReqHcEmit"
  1336. }
  1337. }
  1338. }
  1339. },
  1340. "responses": {
  1341. "200": {
  1342. "description": "Success",
  1343. "content": {
  1344. "application/json": {
  1345. "schema": {
  1346. "type": "object",
  1347. "description": "ApiReturn<ResHcEmit>",
  1348. "properties": {
  1349. "isSucc": {
  1350. "type": "boolean",
  1351. "enum": [
  1352. true
  1353. ],
  1354. "default": true
  1355. },
  1356. "res": {
  1357. "$ref": "#/components/schemas/hc_PtlHcEmit_ResHcEmit"
  1358. }
  1359. }
  1360. }
  1361. }
  1362. }
  1363. },
  1364. "default": {
  1365. "description": "Error",
  1366. "$ref": "#/components/responses/error"
  1367. }
  1368. }
  1369. }
  1370. },
  1371. "/hc/HcInfo": {
  1372. "post": {
  1373. "tags": [
  1374. "hc"
  1375. ],
  1376. "operationId": "hc/HcInfo",
  1377. "requestBody": {
  1378. "description": "Req<HcInfo>",
  1379. "content": {
  1380. "application/json": {
  1381. "schema": {
  1382. "$ref": "#/components/schemas/hc_PtlHcInfo_ReqHcInfo"
  1383. }
  1384. }
  1385. }
  1386. },
  1387. "responses": {
  1388. "200": {
  1389. "description": "Success",
  1390. "content": {
  1391. "application/json": {
  1392. "schema": {
  1393. "type": "object",
  1394. "description": "ApiReturn<ResHcInfo>",
  1395. "properties": {
  1396. "isSucc": {
  1397. "type": "boolean",
  1398. "enum": [
  1399. true
  1400. ],
  1401. "default": true
  1402. },
  1403. "res": {
  1404. "$ref": "#/components/schemas/hc_PtlHcInfo_ResHcInfo"
  1405. }
  1406. }
  1407. }
  1408. }
  1409. }
  1410. },
  1411. "default": {
  1412. "description": "Error",
  1413. "$ref": "#/components/responses/error"
  1414. }
  1415. }
  1416. }
  1417. },
  1418. "/hc/HcMerge": {
  1419. "post": {
  1420. "tags": [
  1421. "hc"
  1422. ],
  1423. "operationId": "hc/HcMerge",
  1424. "requestBody": {
  1425. "description": "Req<HcMerge>",
  1426. "content": {
  1427. "application/json": {
  1428. "schema": {
  1429. "$ref": "#/components/schemas/hc_PtlHcMerge_ReqHcMerge"
  1430. }
  1431. }
  1432. }
  1433. },
  1434. "responses": {
  1435. "200": {
  1436. "description": "Success",
  1437. "content": {
  1438. "application/json": {
  1439. "schema": {
  1440. "type": "object",
  1441. "description": "ApiReturn<ResHcMerge>",
  1442. "properties": {
  1443. "isSucc": {
  1444. "type": "boolean",
  1445. "enum": [
  1446. true
  1447. ],
  1448. "default": true
  1449. },
  1450. "res": {
  1451. "$ref": "#/components/schemas/hc_PtlHcMerge_ResHcMerge"
  1452. }
  1453. }
  1454. }
  1455. }
  1456. }
  1457. },
  1458. "default": {
  1459. "description": "Error",
  1460. "$ref": "#/components/responses/error"
  1461. }
  1462. }
  1463. }
  1464. },
  1465. "/hc/HcSell": {
  1466. "post": {
  1467. "tags": [
  1468. "hc"
  1469. ],
  1470. "operationId": "hc/HcSell",
  1471. "requestBody": {
  1472. "description": "Req<HcSell>",
  1473. "content": {
  1474. "application/json": {
  1475. "schema": {
  1476. "$ref": "#/components/schemas/hc_PtlHcSell_ReqHcSell"
  1477. }
  1478. }
  1479. }
  1480. },
  1481. "responses": {
  1482. "200": {
  1483. "description": "Success",
  1484. "content": {
  1485. "application/json": {
  1486. "schema": {
  1487. "type": "object",
  1488. "description": "ApiReturn<ResHcSell>",
  1489. "properties": {
  1490. "isSucc": {
  1491. "type": "boolean",
  1492. "enum": [
  1493. true
  1494. ],
  1495. "default": true
  1496. },
  1497. "res": {
  1498. "$ref": "#/components/schemas/hc_PtlHcSell_ResHcSell"
  1499. }
  1500. }
  1501. }
  1502. }
  1503. }
  1504. },
  1505. "default": {
  1506. "description": "Error",
  1507. "$ref": "#/components/responses/error"
  1508. }
  1509. }
  1510. }
  1511. },
  1512. "/item/ItemInfo": {
  1513. "post": {
  1514. "tags": [
  1515. "item"
  1516. ],
  1517. "operationId": "item/ItemInfo",
  1518. "requestBody": {
  1519. "description": "Req<ItemInfo>",
  1520. "content": {
  1521. "application/json": {
  1522. "schema": {
  1523. "$ref": "#/components/schemas/item_PtlItemInfo_ReqItemInfo"
  1524. }
  1525. }
  1526. }
  1527. },
  1528. "responses": {
  1529. "200": {
  1530. "description": "Success",
  1531. "content": {
  1532. "application/json": {
  1533. "schema": {
  1534. "type": "object",
  1535. "description": "ApiReturn<ResItemInfo>",
  1536. "properties": {
  1537. "isSucc": {
  1538. "type": "boolean",
  1539. "enum": [
  1540. true
  1541. ],
  1542. "default": true
  1543. },
  1544. "res": {
  1545. "$ref": "#/components/schemas/item_PtlItemInfo_ResItemInfo"
  1546. }
  1547. }
  1548. }
  1549. }
  1550. }
  1551. },
  1552. "default": {
  1553. "description": "Error",
  1554. "$ref": "#/components/responses/error"
  1555. }
  1556. }
  1557. }
  1558. },
  1559. "/mail/MailDelAll": {
  1560. "post": {
  1561. "tags": [
  1562. "mail"
  1563. ],
  1564. "operationId": "mail/MailDelAll",
  1565. "requestBody": {
  1566. "description": "Req<MailDelAll>",
  1567. "content": {
  1568. "application/json": {
  1569. "schema": {
  1570. "$ref": "#/components/schemas/mail_PtlMailDelAll_ReqMailDelAll"
  1571. }
  1572. }
  1573. }
  1574. },
  1575. "responses": {
  1576. "200": {
  1577. "description": "Success",
  1578. "content": {
  1579. "application/json": {
  1580. "schema": {
  1581. "type": "object",
  1582. "description": "ApiReturn<ResMailDelAll>",
  1583. "properties": {
  1584. "isSucc": {
  1585. "type": "boolean",
  1586. "enum": [
  1587. true
  1588. ],
  1589. "default": true
  1590. },
  1591. "res": {
  1592. "$ref": "#/components/schemas/mail_PtlMailDelAll_ResMailDelAll"
  1593. }
  1594. }
  1595. }
  1596. }
  1597. }
  1598. },
  1599. "default": {
  1600. "description": "Error",
  1601. "$ref": "#/components/responses/error"
  1602. }
  1603. }
  1604. }
  1605. },
  1606. "/mail/MailDelOne": {
  1607. "post": {
  1608. "tags": [
  1609. "mail"
  1610. ],
  1611. "operationId": "mail/MailDelOne",
  1612. "requestBody": {
  1613. "description": "Req<MailDelOne>",
  1614. "content": {
  1615. "application/json": {
  1616. "schema": {
  1617. "$ref": "#/components/schemas/mail_PtlMailDelOne_ReqMailDelOne"
  1618. }
  1619. }
  1620. }
  1621. },
  1622. "responses": {
  1623. "200": {
  1624. "description": "Success",
  1625. "content": {
  1626. "application/json": {
  1627. "schema": {
  1628. "type": "object",
  1629. "description": "ApiReturn<ResMailDelOne>",
  1630. "properties": {
  1631. "isSucc": {
  1632. "type": "boolean",
  1633. "enum": [
  1634. true
  1635. ],
  1636. "default": true
  1637. },
  1638. "res": {
  1639. "$ref": "#/components/schemas/mail_PtlMailDelOne_ResMailDelOne"
  1640. }
  1641. }
  1642. }
  1643. }
  1644. }
  1645. },
  1646. "default": {
  1647. "description": "Error",
  1648. "$ref": "#/components/responses/error"
  1649. }
  1650. }
  1651. }
  1652. },
  1653. "/mail/MailInfo": {
  1654. "post": {
  1655. "tags": [
  1656. "mail"
  1657. ],
  1658. "operationId": "mail/MailInfo",
  1659. "requestBody": {
  1660. "description": "Req<MailInfo>",
  1661. "content": {
  1662. "application/json": {
  1663. "schema": {
  1664. "$ref": "#/components/schemas/mail_PtlMailInfo_ReqMailInfo"
  1665. }
  1666. }
  1667. }
  1668. },
  1669. "responses": {
  1670. "200": {
  1671. "description": "Success",
  1672. "content": {
  1673. "application/json": {
  1674. "schema": {
  1675. "type": "object",
  1676. "description": "ApiReturn<ResMailInfo>",
  1677. "properties": {
  1678. "isSucc": {
  1679. "type": "boolean",
  1680. "enum": [
  1681. true
  1682. ],
  1683. "default": true
  1684. },
  1685. "res": {
  1686. "$ref": "#/components/schemas/mail_PtlMailInfo_ResMailInfo"
  1687. }
  1688. }
  1689. }
  1690. }
  1691. }
  1692. },
  1693. "default": {
  1694. "description": "Error",
  1695. "$ref": "#/components/responses/error"
  1696. }
  1697. }
  1698. }
  1699. },
  1700. "/mail/MailRwdAll": {
  1701. "post": {
  1702. "tags": [
  1703. "mail"
  1704. ],
  1705. "operationId": "mail/MailRwdAll",
  1706. "requestBody": {
  1707. "description": "Req<MailRwdAll>",
  1708. "content": {
  1709. "application/json": {
  1710. "schema": {
  1711. "$ref": "#/components/schemas/mail_PtlMailRwdAll_ReqMailRwdAll"
  1712. }
  1713. }
  1714. }
  1715. },
  1716. "responses": {
  1717. "200": {
  1718. "description": "Success",
  1719. "content": {
  1720. "application/json": {
  1721. "schema": {
  1722. "type": "object",
  1723. "description": "ApiReturn<ResMailRwdAll>",
  1724. "properties": {
  1725. "isSucc": {
  1726. "type": "boolean",
  1727. "enum": [
  1728. true
  1729. ],
  1730. "default": true
  1731. },
  1732. "res": {
  1733. "$ref": "#/components/schemas/mail_PtlMailRwdAll_ResMailRwdAll"
  1734. }
  1735. }
  1736. }
  1737. }
  1738. }
  1739. },
  1740. "default": {
  1741. "description": "Error",
  1742. "$ref": "#/components/responses/error"
  1743. }
  1744. }
  1745. }
  1746. },
  1747. "/mail/MailRwdOne": {
  1748. "post": {
  1749. "tags": [
  1750. "mail"
  1751. ],
  1752. "operationId": "mail/MailRwdOne",
  1753. "requestBody": {
  1754. "description": "Req<MailRwdOne>",
  1755. "content": {
  1756. "application/json": {
  1757. "schema": {
  1758. "$ref": "#/components/schemas/mail_PtlMailRwdOne_ReqMailRwdOne"
  1759. }
  1760. }
  1761. }
  1762. },
  1763. "responses": {
  1764. "200": {
  1765. "description": "Success",
  1766. "content": {
  1767. "application/json": {
  1768. "schema": {
  1769. "type": "object",
  1770. "description": "ApiReturn<ResMailRwdOne>",
  1771. "properties": {
  1772. "isSucc": {
  1773. "type": "boolean",
  1774. "enum": [
  1775. true
  1776. ],
  1777. "default": true
  1778. },
  1779. "res": {
  1780. "$ref": "#/components/schemas/mail_PtlMailRwdOne_ResMailRwdOne"
  1781. }
  1782. }
  1783. }
  1784. }
  1785. }
  1786. },
  1787. "default": {
  1788. "description": "Error",
  1789. "$ref": "#/components/responses/error"
  1790. }
  1791. }
  1792. }
  1793. },
  1794. "/plat/PlatLogin": {
  1795. "post": {
  1796. "tags": [
  1797. "plat"
  1798. ],
  1799. "operationId": "plat/PlatLogin",
  1800. "requestBody": {
  1801. "description": "Req<PlatLogin>",
  1802. "content": {
  1803. "application/json": {
  1804. "schema": {
  1805. "$ref": "#/components/schemas/plat_PtlPlatLogin_ReqPlatLogin"
  1806. }
  1807. }
  1808. }
  1809. },
  1810. "responses": {
  1811. "200": {
  1812. "description": "Success",
  1813. "content": {
  1814. "application/json": {
  1815. "schema": {
  1816. "type": "object",
  1817. "description": "ApiReturn<ResPlatLogin>",
  1818. "properties": {
  1819. "isSucc": {
  1820. "type": "boolean",
  1821. "enum": [
  1822. true
  1823. ],
  1824. "default": true
  1825. },
  1826. "res": {
  1827. "$ref": "#/components/schemas/plat_PtlPlatLogin_ResPlatLogin"
  1828. }
  1829. }
  1830. }
  1831. }
  1832. }
  1833. },
  1834. "default": {
  1835. "description": "Error",
  1836. "$ref": "#/components/responses/error"
  1837. }
  1838. }
  1839. }
  1840. },
  1841. "/player/PlayerLogin": {
  1842. "post": {
  1843. "tags": [
  1844. "player"
  1845. ],
  1846. "operationId": "player/PlayerLogin",
  1847. "requestBody": {
  1848. "description": "Req<PlayerLogin>",
  1849. "content": {
  1850. "application/json": {
  1851. "schema": {
  1852. "$ref": "#/components/schemas/player_PtlPlayerLogin_ReqPlayerLogin"
  1853. }
  1854. }
  1855. }
  1856. },
  1857. "responses": {
  1858. "200": {
  1859. "description": "Success",
  1860. "content": {
  1861. "application/json": {
  1862. "schema": {
  1863. "type": "object",
  1864. "description": "ApiReturn<ResPlayerLogin>",
  1865. "properties": {
  1866. "isSucc": {
  1867. "type": "boolean",
  1868. "enum": [
  1869. true
  1870. ],
  1871. "default": true
  1872. },
  1873. "res": {
  1874. "$ref": "#/components/schemas/player_PtlPlayerLogin_ResPlayerLogin"
  1875. }
  1876. }
  1877. }
  1878. }
  1879. }
  1880. },
  1881. "default": {
  1882. "description": "Error",
  1883. "$ref": "#/components/responses/error"
  1884. }
  1885. }
  1886. }
  1887. },
  1888. "/task/TaskInfo": {
  1889. "post": {
  1890. "tags": [
  1891. "task"
  1892. ],
  1893. "operationId": "task/TaskInfo",
  1894. "requestBody": {
  1895. "description": "Req<TaskInfo>",
  1896. "content": {
  1897. "application/json": {
  1898. "schema": {
  1899. "$ref": "#/components/schemas/task_PtlTaskInfo_ReqTaskInfo"
  1900. }
  1901. }
  1902. }
  1903. },
  1904. "responses": {
  1905. "200": {
  1906. "description": "Success",
  1907. "content": {
  1908. "application/json": {
  1909. "schema": {
  1910. "type": "object",
  1911. "description": "ApiReturn<ResTaskInfo>",
  1912. "properties": {
  1913. "isSucc": {
  1914. "type": "boolean",
  1915. "enum": [
  1916. true
  1917. ],
  1918. "default": true
  1919. },
  1920. "res": {
  1921. "$ref": "#/components/schemas/task_PtlTaskInfo_ResTaskInfo"
  1922. }
  1923. }
  1924. }
  1925. }
  1926. }
  1927. },
  1928. "default": {
  1929. "description": "Error",
  1930. "$ref": "#/components/responses/error"
  1931. }
  1932. }
  1933. }
  1934. },
  1935. "/task/TaskRwd": {
  1936. "post": {
  1937. "tags": [
  1938. "task"
  1939. ],
  1940. "operationId": "task/TaskRwd",
  1941. "requestBody": {
  1942. "description": "Req<TaskRwd>",
  1943. "content": {
  1944. "application/json": {
  1945. "schema": {
  1946. "$ref": "#/components/schemas/task_PtlTaskRwd_ReqTaskRwd"
  1947. }
  1948. }
  1949. }
  1950. },
  1951. "responses": {
  1952. "200": {
  1953. "description": "Success",
  1954. "content": {
  1955. "application/json": {
  1956. "schema": {
  1957. "type": "object",
  1958. "description": "ApiReturn<ResTaskRwd>",
  1959. "properties": {
  1960. "isSucc": {
  1961. "type": "boolean",
  1962. "enum": [
  1963. true
  1964. ],
  1965. "default": true
  1966. },
  1967. "res": {
  1968. "$ref": "#/components/schemas/task_PtlTaskRwd_ResTaskRwd"
  1969. }
  1970. }
  1971. }
  1972. }
  1973. }
  1974. },
  1975. "default": {
  1976. "description": "Error",
  1977. "$ref": "#/components/responses/error"
  1978. }
  1979. }
  1980. }
  1981. },
  1982. "/user/UserLogin": {
  1983. "post": {
  1984. "tags": [
  1985. "user"
  1986. ],
  1987. "operationId": "user/UserLogin",
  1988. "requestBody": {
  1989. "description": "Req<UserLogin>",
  1990. "content": {
  1991. "application/json": {
  1992. "schema": {
  1993. "$ref": "#/components/schemas/user_PtlUserLogin_ReqUserLogin"
  1994. }
  1995. }
  1996. }
  1997. },
  1998. "responses": {
  1999. "200": {
  2000. "description": "Success",
  2001. "content": {
  2002. "application/json": {
  2003. "schema": {
  2004. "type": "object",
  2005. "description": "ApiReturn<ResUserLogin>",
  2006. "properties": {
  2007. "isSucc": {
  2008. "type": "boolean",
  2009. "enum": [
  2010. true
  2011. ],
  2012. "default": true
  2013. },
  2014. "res": {
  2015. "$ref": "#/components/schemas/user_PtlUserLogin_ResUserLogin"
  2016. }
  2017. }
  2018. }
  2019. }
  2020. }
  2021. },
  2022. "default": {
  2023. "description": "Error",
  2024. "$ref": "#/components/responses/error"
  2025. }
  2026. }
  2027. }
  2028. },
  2029. "/user/UserNotices": {
  2030. "post": {
  2031. "tags": [
  2032. "user"
  2033. ],
  2034. "operationId": "user/UserNotices",
  2035. "requestBody": {
  2036. "description": "Req<UserNotices>",
  2037. "content": {
  2038. "application/json": {
  2039. "schema": {
  2040. "$ref": "#/components/schemas/user_PtlUserNotices_ReqUserNotices"
  2041. }
  2042. }
  2043. }
  2044. },
  2045. "responses": {
  2046. "200": {
  2047. "description": "Success",
  2048. "content": {
  2049. "application/json": {
  2050. "schema": {
  2051. "type": "object",
  2052. "description": "ApiReturn<ResUserNotices>",
  2053. "properties": {
  2054. "isSucc": {
  2055. "type": "boolean",
  2056. "enum": [
  2057. true
  2058. ],
  2059. "default": true
  2060. },
  2061. "res": {
  2062. "$ref": "#/components/schemas/user_PtlUserNotices_ResUserNotices"
  2063. }
  2064. }
  2065. }
  2066. }
  2067. }
  2068. },
  2069. "default": {
  2070. "description": "Error",
  2071. "$ref": "#/components/responses/error"
  2072. }
  2073. }
  2074. }
  2075. },
  2076. "/user/UserSetName": {
  2077. "post": {
  2078. "tags": [
  2079. "user"
  2080. ],
  2081. "operationId": "user/UserSetName",
  2082. "requestBody": {
  2083. "description": "Req<UserSetName>",
  2084. "content": {
  2085. "application/json": {
  2086. "schema": {
  2087. "$ref": "#/components/schemas/user_PtlUserSetName_ReqUserSetName"
  2088. }
  2089. }
  2090. }
  2091. },
  2092. "responses": {
  2093. "200": {
  2094. "description": "Success",
  2095. "content": {
  2096. "application/json": {
  2097. "schema": {
  2098. "type": "object",
  2099. "description": "ApiReturn<ResUserSetName>",
  2100. "properties": {
  2101. "isSucc": {
  2102. "type": "boolean",
  2103. "enum": [
  2104. true
  2105. ],
  2106. "default": true
  2107. },
  2108. "res": {
  2109. "$ref": "#/components/schemas/user_PtlUserSetName_ResUserSetName"
  2110. }
  2111. }
  2112. }
  2113. }
  2114. }
  2115. },
  2116. "default": {
  2117. "description": "Error",
  2118. "$ref": "#/components/responses/error"
  2119. }
  2120. }
  2121. }
  2122. },
  2123. "/user/UserUseCode": {
  2124. "post": {
  2125. "tags": [
  2126. "user"
  2127. ],
  2128. "operationId": "user/UserUseCode",
  2129. "requestBody": {
  2130. "description": "Req<UserUseCode>",
  2131. "content": {
  2132. "application/json": {
  2133. "schema": {
  2134. "$ref": "#/components/schemas/user_PtlUserUseCode_ReqUserUseCode"
  2135. }
  2136. }
  2137. }
  2138. },
  2139. "responses": {
  2140. "200": {
  2141. "description": "Success",
  2142. "content": {
  2143. "application/json": {
  2144. "schema": {
  2145. "type": "object",
  2146. "description": "ApiReturn<ResUserUseCode>",
  2147. "properties": {
  2148. "isSucc": {
  2149. "type": "boolean",
  2150. "enum": [
  2151. true
  2152. ],
  2153. "default": true
  2154. },
  2155. "res": {
  2156. "$ref": "#/components/schemas/user_PtlUserUseCode_ResUserUseCode"
  2157. }
  2158. }
  2159. }
  2160. }
  2161. }
  2162. },
  2163. "default": {
  2164. "description": "Error",
  2165. "$ref": "#/components/responses/error"
  2166. }
  2167. }
  2168. }
  2169. }
  2170. },
  2171. "components": {
  2172. "schemas": {
  2173. "admin_PtladdBuMa_ReqaddBuMa": {
  2174. "type": "object",
  2175. "properties": {
  2176. "id": {
  2177. "type": "string"
  2178. },
  2179. "addCount": {
  2180. "type": "number"
  2181. }
  2182. },
  2183. "required": [
  2184. "id",
  2185. "addCount"
  2186. ]
  2187. },
  2188. "admin_PtladdBuMa_ResaddBuMa": {
  2189. "type": "object",
  2190. "properties": {
  2191. "order10Back": {
  2192. "type": "object"
  2193. }
  2194. },
  2195. "required": [
  2196. "order10Back"
  2197. ]
  2198. },
  2199. "admin_PtladdCode_ReqaddCode": {
  2200. "type": "object",
  2201. "properties": {
  2202. "param": {
  2203. "type": "object"
  2204. }
  2205. },
  2206. "required": [
  2207. "param"
  2208. ]
  2209. },
  2210. "admin_PtladdCode_ResaddCode": {
  2211. "type": "object",
  2212. "properties": {
  2213. "order10Back": {
  2214. "type": "object"
  2215. }
  2216. },
  2217. "required": [
  2218. "order10Back"
  2219. ]
  2220. },
  2221. "admin_PtladdMail_ReqaddMail": {
  2222. "type": "object",
  2223. "properties": {
  2224. "params": {
  2225. "type": "object"
  2226. }
  2227. },
  2228. "required": [
  2229. "params"
  2230. ]
  2231. },
  2232. "admin_PtladdMail_ResaddMail": {
  2233. "type": "object",
  2234. "properties": {
  2235. "order10Back": {
  2236. "type": "object"
  2237. }
  2238. },
  2239. "required": [
  2240. "order10Back"
  2241. ]
  2242. },
  2243. "admin_PtlcacheVer_ReqcacheVer": {
  2244. "type": "object",
  2245. "properties": {}
  2246. },
  2247. "admin_PtlcacheVer_RescacheVer": {
  2248. "type": "object",
  2249. "properties": {
  2250. "order10Back": {
  2251. "type": "object"
  2252. }
  2253. },
  2254. "required": [
  2255. "order10Back"
  2256. ]
  2257. },
  2258. "admin_PtldeleteCode_ReqdeleteCode": {
  2259. "type": "object",
  2260. "properties": {
  2261. "id": {
  2262. "type": "string"
  2263. }
  2264. },
  2265. "required": [
  2266. "id"
  2267. ]
  2268. },
  2269. "admin_PtldeleteCode_ResdeleteCode": {
  2270. "type": "object",
  2271. "properties": {
  2272. "order10Back": {
  2273. "type": "object"
  2274. }
  2275. },
  2276. "required": [
  2277. "order10Back"
  2278. ]
  2279. },
  2280. "admin_PtldeleteMail_ReqdeleteMail": {
  2281. "type": "object",
  2282. "properties": {
  2283. "id": {
  2284. "type": "string"
  2285. }
  2286. },
  2287. "required": [
  2288. "id"
  2289. ]
  2290. },
  2291. "admin_PtldeleteMail_ResdeleteMail": {
  2292. "type": "object",
  2293. "properties": {
  2294. "order10Back": {
  2295. "type": "object"
  2296. }
  2297. },
  2298. "required": [
  2299. "order10Back"
  2300. ]
  2301. },
  2302. "admin_PtldeleteQuFu_ReqdeleteQuFu": {
  2303. "type": "object",
  2304. "properties": {
  2305. "sid": {
  2306. "type": "string"
  2307. }
  2308. },
  2309. "required": [
  2310. "sid"
  2311. ]
  2312. },
  2313. "admin_PtldeleteQuFu_ResdeleteQuFu": {
  2314. "type": "object",
  2315. "properties": {
  2316. "order10Back": {
  2317. "type": "object"
  2318. }
  2319. },
  2320. "required": [
  2321. "order10Back"
  2322. ]
  2323. },
  2324. "admin_PtldeleteSetting_ReqdeleteSetting": {
  2325. "type": "object",
  2326. "properties": {
  2327. "key": {
  2328. "type": "string"
  2329. }
  2330. },
  2331. "required": [
  2332. "key"
  2333. ]
  2334. },
  2335. "admin_PtldeleteSetting_ResdeleteSetting": {
  2336. "type": "object",
  2337. "properties": {
  2338. "order10Back": {
  2339. "type": "object"
  2340. }
  2341. },
  2342. "required": [
  2343. "order10Back"
  2344. ]
  2345. },
  2346. "admin_PtlgetCode_ReqgetCode": {
  2347. "type": "object",
  2348. "properties": {}
  2349. },
  2350. "admin_PtlgetCode_ResgetCode": {
  2351. "type": "object",
  2352. "properties": {
  2353. "order10Back": {
  2354. "type": "object"
  2355. }
  2356. },
  2357. "required": [
  2358. "order10Back"
  2359. ]
  2360. },
  2361. "admin_PtlgetCodeMa_ReqgetCodeMa": {
  2362. "type": "object",
  2363. "properties": {
  2364. "id": {
  2365. "type": "string"
  2366. }
  2367. },
  2368. "required": [
  2369. "id"
  2370. ]
  2371. },
  2372. "admin_PtlgetCodeMa_ResgetCodeMa": {
  2373. "type": "object",
  2374. "properties": {
  2375. "order10Back": {
  2376. "type": "object"
  2377. }
  2378. },
  2379. "required": [
  2380. "order10Back"
  2381. ]
  2382. },
  2383. "admin_PtlgetMail_ReqgetMail": {
  2384. "type": "object",
  2385. "properties": {}
  2386. },
  2387. "admin_PtlgetMail_ResgetMail": {
  2388. "type": "object",
  2389. "properties": {
  2390. "order10Back": {
  2391. "type": "object"
  2392. }
  2393. },
  2394. "required": [
  2395. "order10Back"
  2396. ]
  2397. },
  2398. "admin_PtlgetNeed_ReqgetNeed": {
  2399. "type": "object",
  2400. "properties": {
  2401. "stime": {
  2402. "type": "number"
  2403. },
  2404. "timeInterval": {
  2405. "type": "number"
  2406. }
  2407. },
  2408. "required": [
  2409. "stime",
  2410. "timeInterval"
  2411. ]
  2412. },
  2413. "admin_PtlgetNeed_ResgetNeed": {
  2414. "type": "object",
  2415. "properties": {
  2416. "order10Back": {
  2417. "type": "object"
  2418. }
  2419. },
  2420. "required": [
  2421. "order10Back"
  2422. ]
  2423. },
  2424. "admin_PtlgetQuFu_ReqgetQuFu": {
  2425. "type": "object",
  2426. "properties": {}
  2427. },
  2428. "admin_PtlgetQuFu_ResgetQuFu": {
  2429. "type": "object",
  2430. "properties": {
  2431. "order10Back": {
  2432. "type": "object"
  2433. }
  2434. },
  2435. "required": [
  2436. "order10Back"
  2437. ]
  2438. },
  2439. "admin_PtlgetSetting_ReqgetSetting": {
  2440. "type": "object",
  2441. "properties": {}
  2442. },
  2443. "admin_PtlgetSetting_ResgetSetting": {
  2444. "type": "object",
  2445. "properties": {
  2446. "order10Back": {
  2447. "type": "object"
  2448. }
  2449. },
  2450. "required": [
  2451. "order10Back"
  2452. ]
  2453. },
  2454. "admin_PtlgetVer_ReqgetVer": {
  2455. "type": "object",
  2456. "properties": {}
  2457. },
  2458. "admin_PtlgetVer_ResgetVer": {
  2459. "type": "object",
  2460. "properties": {
  2461. "order10Back": {
  2462. "type": "object"
  2463. }
  2464. },
  2465. "required": [
  2466. "order10Back"
  2467. ]
  2468. },
  2469. "admin_PtlhuodongAdd_ReqhuodongAdd": {
  2470. "type": "object",
  2471. "properties": {
  2472. "params": {
  2473. "type": "object"
  2474. }
  2475. },
  2476. "required": [
  2477. "params"
  2478. ]
  2479. },
  2480. "admin_PtlhuodongAdd_ReshuodongAdd": {
  2481. "type": "object",
  2482. "properties": {
  2483. "order10Back": {
  2484. "type": "object"
  2485. }
  2486. },
  2487. "required": [
  2488. "order10Back"
  2489. ]
  2490. },
  2491. "admin_PtlhuodongDelete_ReqhuodongDelete": {
  2492. "type": "object",
  2493. "properties": {
  2494. "id": {
  2495. "type": "string"
  2496. }
  2497. },
  2498. "required": [
  2499. "id"
  2500. ]
  2501. },
  2502. "admin_PtlhuodongDelete_ReshuodongDelete": {
  2503. "type": "object",
  2504. "properties": {
  2505. "order10Back": {
  2506. "type": "object"
  2507. }
  2508. },
  2509. "required": [
  2510. "order10Back"
  2511. ]
  2512. },
  2513. "admin_PtlhuodongEdit_ReqhuodongEdit": {
  2514. "type": "object",
  2515. "properties": {
  2516. "id": {
  2517. "type": "string"
  2518. },
  2519. "params": {
  2520. "type": "object"
  2521. }
  2522. },
  2523. "required": [
  2524. "id",
  2525. "params"
  2526. ]
  2527. },
  2528. "admin_PtlhuodongEdit_ReshuodongEdit": {
  2529. "type": "object",
  2530. "properties": {
  2531. "order10Back": {
  2532. "type": "object"
  2533. }
  2534. },
  2535. "required": [
  2536. "order10Back"
  2537. ]
  2538. },
  2539. "admin_PtlhuodongFind_ReqhuodongFind": {
  2540. "type": "object",
  2541. "properties": {
  2542. "key": {
  2543. "type": "string"
  2544. },
  2545. "hdcid": {
  2546. "type": "string"
  2547. }
  2548. }
  2549. },
  2550. "admin_PtlhuodongFind_ReshuodongFind": {
  2551. "type": "object",
  2552. "properties": {
  2553. "order10Back": {
  2554. "type": "object"
  2555. }
  2556. },
  2557. "required": [
  2558. "order10Back"
  2559. ]
  2560. },
  2561. "admin_PtlroleData_ReqroleData": {
  2562. "type": "object",
  2563. "properties": {
  2564. "uuid": {
  2565. "type": "string"
  2566. }
  2567. },
  2568. "required": [
  2569. "uuid"
  2570. ],
  2571. "description": "请求接口"
  2572. },
  2573. "admin_PtlroleData_ResroleData": {
  2574. "type": "object",
  2575. "properties": {
  2576. "order10Back": {
  2577. "type": "object"
  2578. }
  2579. },
  2580. "required": [
  2581. "order10Back"
  2582. ],
  2583. "description": "返回信息"
  2584. },
  2585. "admin_PtlupdateMail_RequpdateMail": {
  2586. "type": "object",
  2587. "properties": {
  2588. "id": {
  2589. "type": "string"
  2590. },
  2591. "params": {
  2592. "type": "object"
  2593. }
  2594. },
  2595. "required": [
  2596. "id",
  2597. "params"
  2598. ]
  2599. },
  2600. "admin_PtlupdateMail_ResupdateMail": {
  2601. "type": "object",
  2602. "properties": {
  2603. "order10Back": {
  2604. "type": "object"
  2605. }
  2606. },
  2607. "required": [
  2608. "order10Back"
  2609. ]
  2610. },
  2611. "admin_PtlupdateQuFu_RequpdateQuFu": {
  2612. "type": "object",
  2613. "properties": {
  2614. "sid": {
  2615. "type": "string"
  2616. },
  2617. "param": {
  2618. "type": "object",
  2619. "properties": {},
  2620. "additionalProperties": {
  2621. "type": "object"
  2622. }
  2623. }
  2624. },
  2625. "required": [
  2626. "sid",
  2627. "param"
  2628. ]
  2629. },
  2630. "admin_PtlupdateQuFu_ResupdateQuFu": {
  2631. "type": "object",
  2632. "properties": {
  2633. "order10Back": {
  2634. "type": "object"
  2635. }
  2636. },
  2637. "required": [
  2638. "order10Back"
  2639. ]
  2640. },
  2641. "admin_PtlupdateSetting_RequpdateSetting": {
  2642. "type": "object",
  2643. "properties": {
  2644. "key": {
  2645. "type": "string"
  2646. },
  2647. "param": {
  2648. "type": "object"
  2649. }
  2650. },
  2651. "required": [
  2652. "key",
  2653. "param"
  2654. ]
  2655. },
  2656. "admin_PtlupdateSetting_ResupdateSetting": {
  2657. "type": "object",
  2658. "properties": {
  2659. "order10Back": {
  2660. "type": "object"
  2661. }
  2662. },
  2663. "required": [
  2664. "order10Back"
  2665. ]
  2666. },
  2667. "admin_Ptlxiazai_Reqxiazai": {
  2668. "type": "object",
  2669. "properties": {
  2670. "id": {
  2671. "type": "string"
  2672. }
  2673. },
  2674. "required": [
  2675. "id"
  2676. ]
  2677. },
  2678. "admin_Ptlxiazai_Resxiazai": {
  2679. "type": "object",
  2680. "properties": {
  2681. "order10Back": {
  2682. "type": "object"
  2683. }
  2684. },
  2685. "required": [
  2686. "order10Back"
  2687. ]
  2688. },
  2689. "chat_PtlChatSend_ReqChatSend": {
  2690. "type": "object",
  2691. "properties": {
  2692. "type": {
  2693. "$ref": "#/components/schemas/chat_PtlChatSend_ChatType"
  2694. },
  2695. "str": {
  2696. "type": "string"
  2697. }
  2698. },
  2699. "required": [
  2700. "type",
  2701. "str"
  2702. ],
  2703. "description": "请求接口"
  2704. },
  2705. "chat_PtlChatSend_ChatType": {
  2706. "type": "string",
  2707. "enum": [
  2708. "hefu"
  2709. ]
  2710. },
  2711. "chat_PtlChatSend_ResChatSend": {
  2712. "type": "object",
  2713. "properties": {},
  2714. "additionalProperties": {
  2715. "$ref": "#/components/schemas/chat_PtlChatSend_ChatInfo"
  2716. },
  2717. "description": "返回信息"
  2718. },
  2719. "chat_PtlChatSend_ChatInfo": {
  2720. "type": "object",
  2721. "properties": {
  2722. "id": {
  2723. "type": "number"
  2724. },
  2725. "type": {
  2726. "$ref": "#/components/schemas/chat_PtlChatSend_ChatType"
  2727. },
  2728. "fuuid": {
  2729. "type": "string"
  2730. },
  2731. "fuser": {
  2732. "$ref": "#/components/schemas/base_FUserInfo"
  2733. },
  2734. "msg": {
  2735. "type": "string"
  2736. },
  2737. "time": {
  2738. "type": "number"
  2739. }
  2740. },
  2741. "required": [
  2742. "id",
  2743. "type",
  2744. "fuuid",
  2745. "fuser",
  2746. "msg",
  2747. "time"
  2748. ]
  2749. },
  2750. "base_FUserInfo": {
  2751. "type": "object",
  2752. "properties": {
  2753. "uuid": {
  2754. "type": "string"
  2755. },
  2756. "sid": {
  2757. "type": "string"
  2758. },
  2759. "name": {
  2760. "type": "string"
  2761. },
  2762. "head": {
  2763. "type": "string"
  2764. },
  2765. "wxhead": {
  2766. "type": "string"
  2767. },
  2768. "sex": {
  2769. "type": "number"
  2770. },
  2771. "level": {
  2772. "type": "number"
  2773. },
  2774. "exp": {
  2775. "type": "number"
  2776. },
  2777. "power": {
  2778. "type": "number"
  2779. }
  2780. },
  2781. "required": [
  2782. "uuid",
  2783. "sid",
  2784. "name",
  2785. "head",
  2786. "wxhead",
  2787. "sex",
  2788. "level",
  2789. "exp",
  2790. "power"
  2791. ]
  2792. },
  2793. "chat_server_MsgChatNew_s_MsgChatNew_s": {
  2794. "type": "object",
  2795. "properties": {},
  2796. "additionalProperties": {
  2797. "$ref": "#/components/schemas/chat_PtlChatSend_ChatInfo"
  2798. },
  2799. "description": "msg推送信息"
  2800. },
  2801. "common_MsgItems_MsgItems": {
  2802. "type": "object",
  2803. "properties": {
  2804. "items": {
  2805. "type": "array",
  2806. "items": {
  2807. "type": "array",
  2808. "items": {
  2809. "type": "number"
  2810. }
  2811. }
  2812. }
  2813. },
  2814. "required": [
  2815. "items"
  2816. ],
  2817. "description": "道具变化"
  2818. },
  2819. "common_MsgMessage_MsgMessage": {
  2820. "type": "object",
  2821. "properties": {
  2822. "message": {
  2823. "type": "string"
  2824. }
  2825. },
  2826. "required": [
  2827. "message"
  2828. ],
  2829. "description": "信息推送"
  2830. },
  2831. "eps_PtlEpsInfo_ReqEpsInfo": {
  2832. "type": "object",
  2833. "properties": {},
  2834. "description": "获取属性信息"
  2835. },
  2836. "eps_PtlEpsInfo_ResEpsInfo": {
  2837. "type": "object",
  2838. "properties": {},
  2839. "additionalProperties": {
  2840. "type": "number"
  2841. },
  2842. "description": "返回属性信息"
  2843. },
  2844. "eps_server_MsgEpsChange_s_MsgEpsChange_s": {
  2845. "type": "object",
  2846. "properties": {},
  2847. "additionalProperties": {
  2848. "type": "number"
  2849. },
  2850. "description": "属性变化"
  2851. },
  2852. "fight_PtlFightHc_ReqFightHc": {
  2853. "type": "object",
  2854. "properties": {
  2855. "gzid": {
  2856. "type": "string"
  2857. }
  2858. },
  2859. "required": [
  2860. "gzid"
  2861. ],
  2862. "description": "请求接口 合成战斗"
  2863. },
  2864. "fight_PtlFightHc_ResFightHc": {
  2865. "allOf": [
  2866. {
  2867. "$ref": "#/components/schemas/base_FightBase"
  2868. },
  2869. {
  2870. "type": "object",
  2871. "properties": {
  2872. "list": {
  2873. "type": "object",
  2874. "properties": {},
  2875. "additionalProperties": {
  2876. "$ref": "#/components/schemas/hc_PtlHcInfo_HcInfoGeziInfo"
  2877. }
  2878. }
  2879. },
  2880. "required": [
  2881. "list"
  2882. ]
  2883. }
  2884. ],
  2885. "description": "返回信息"
  2886. },
  2887. "base_FightBase": {
  2888. "type": "object",
  2889. "properties": {
  2890. "fightStart": {
  2891. "$ref": "#/components/schemas/base_FightStart"
  2892. },
  2893. "win": {
  2894. "type": "number"
  2895. },
  2896. "log": {
  2897. "type": "object",
  2898. "properties": {},
  2899. "additionalProperties": {
  2900. "type": "array",
  2901. "items": {
  2902. "$ref": "#/components/schemas/base_fightLogOne"
  2903. }
  2904. }
  2905. }
  2906. },
  2907. "required": [
  2908. "fightStart",
  2909. "win",
  2910. "log"
  2911. ],
  2912. "description": "返回信息"
  2913. },
  2914. "base_FightStart": {
  2915. "type": "object",
  2916. "properties": {
  2917. "from": {
  2918. "type": "string"
  2919. },
  2920. "seed": {
  2921. "type": "number"
  2922. },
  2923. "teams": {
  2924. "type": "object",
  2925. "properties": {},
  2926. "additionalProperties": {
  2927. "$ref": "#/components/schemas/base_FightTeam"
  2928. }
  2929. }
  2930. },
  2931. "required": [
  2932. "from",
  2933. "seed",
  2934. "teams"
  2935. ],
  2936. "description": "战斗初始阵容"
  2937. },
  2938. "base_FightTeam": {
  2939. "type": "object",
  2940. "properties": {
  2941. "fid": {
  2942. "type": "string"
  2943. },
  2944. "seat": {
  2945. "type": "number"
  2946. },
  2947. "eps": {
  2948. "type": "object",
  2949. "properties": {},
  2950. "additionalProperties": {
  2951. "type": "number"
  2952. }
  2953. }
  2954. },
  2955. "required": [
  2956. "fid",
  2957. "seat",
  2958. "eps"
  2959. ],
  2960. "description": "单个阵容信息"
  2961. },
  2962. "base_fightLogOne": {
  2963. "type": "object",
  2964. "properties": {
  2965. "aType": {
  2966. "$ref": "#/components/schemas/base_ActionType"
  2967. },
  2968. "seat": {
  2969. "type": "number"
  2970. },
  2971. "atker": {
  2972. "$ref": "#/components/schemas/base_fightLogOneData"
  2973. },
  2974. "target": {
  2975. "type": "array",
  2976. "items": {
  2977. "$ref": "#/components/schemas/base_fightLogOneData"
  2978. }
  2979. }
  2980. },
  2981. "required": [
  2982. "aType",
  2983. "seat",
  2984. "atker",
  2985. "target"
  2986. ]
  2987. },
  2988. "base_ActionType": {
  2989. "type": "string",
  2990. "enum": [
  2991. "wu",
  2992. "0",
  2993. "1",
  2994. "2",
  2995. "3",
  2996. "999"
  2997. ],
  2998. "description": "战斗动作类型"
  2999. },
  3000. "base_fightLogOneData": {
  3001. "type": "object",
  3002. "properties": {
  3003. "iid": {
  3004. "type": "string"
  3005. },
  3006. "hp": {
  3007. "type": "number"
  3008. },
  3009. "buff": {
  3010. "type": "array",
  3011. "items": {
  3012. "type": "array",
  3013. "prefixItems": [
  3014. {
  3015. "type": "string"
  3016. },
  3017. {
  3018. "type": "number"
  3019. }
  3020. ]
  3021. }
  3022. },
  3023. "effect": {
  3024. "type": "array",
  3025. "items": {
  3026. "type": "array",
  3027. "prefixItems": [
  3028. {
  3029. "type": "string"
  3030. },
  3031. {
  3032. "type": "number"
  3033. }
  3034. ]
  3035. }
  3036. }
  3037. },
  3038. "required": [
  3039. "iid",
  3040. "hp",
  3041. "buff",
  3042. "effect"
  3043. ],
  3044. "description": "日志格式"
  3045. },
  3046. "hc_PtlHcInfo_HcInfoGeziInfo": {
  3047. "type": "object",
  3048. "properties": {
  3049. "type": {
  3050. "$ref": "#/components/schemas/hc_PtlHcInfo_HcType"
  3051. },
  3052. "unlock": {
  3053. "$ref": "#/components/schemas/hc_PtlHcInfo_HcUnlock"
  3054. },
  3055. "correlationId": {
  3056. "type": "number"
  3057. },
  3058. "emitter": {
  3059. "type": "object",
  3060. "properties": {
  3061. "unlock": {
  3062. "$ref": "#/components/schemas/hc_PtlHcInfo_HcUnlock"
  3063. }
  3064. },
  3065. "required": [
  3066. "unlock"
  3067. ]
  3068. }
  3069. },
  3070. "required": [
  3071. "type",
  3072. "unlock",
  3073. "correlationId"
  3074. ]
  3075. },
  3076. "hc_PtlHcInfo_HcType": {
  3077. "type": "number",
  3078. "enum": [
  3079. 0,
  3080. 2,
  3081. 3,
  3082. 4,
  3083. 50,
  3084. 51
  3085. ]
  3086. },
  3087. "hc_PtlHcInfo_HcUnlock": {
  3088. "type": "number",
  3089. "enum": [
  3090. 1,
  3091. 0
  3092. ]
  3093. },
  3094. "fight_PtlFightTest_ReqFightTest": {
  3095. "type": "object",
  3096. "properties": {},
  3097. "description": "请求接口"
  3098. },
  3099. "fight_PtlFightTest_ResFightTest": {
  3100. "allOf": [
  3101. {
  3102. "$ref": "#/components/schemas/base_FightBase"
  3103. },
  3104. {
  3105. "type": "object",
  3106. "properties": {}
  3107. }
  3108. ],
  3109. "description": "返回信息"
  3110. },
  3111. "hc_PtlHcEmit_ReqHcEmit": {
  3112. "type": "object",
  3113. "properties": {
  3114. "gzid": {
  3115. "type": "string"
  3116. }
  3117. },
  3118. "required": [
  3119. "gzid"
  3120. ],
  3121. "description": "请求接口 点击发射器"
  3122. },
  3123. "hc_PtlHcEmit_ResHcEmit": {
  3124. "type": "object",
  3125. "properties": {},
  3126. "additionalProperties": {
  3127. "$ref": "#/components/schemas/hc_PtlHcInfo_HcInfoGeziInfo"
  3128. },
  3129. "description": "返回信息"
  3130. },
  3131. "hc_PtlHcInfo_ReqHcInfo": {
  3132. "type": "object",
  3133. "properties": {},
  3134. "description": "获取合成信息"
  3135. },
  3136. "hc_PtlHcInfo_ResHcInfo": {
  3137. "type": "object",
  3138. "properties": {
  3139. "chapterId": {
  3140. "type": "number"
  3141. },
  3142. "tili": {
  3143. "type": "number"
  3144. },
  3145. "maxTili": {
  3146. "type": "number"
  3147. },
  3148. "lastTime": {
  3149. "type": "number"
  3150. },
  3151. "list": {
  3152. "$ref": "#/components/schemas/hc_PtlHcInfo_HcInfoList"
  3153. }
  3154. },
  3155. "required": [
  3156. "chapterId",
  3157. "tili",
  3158. "maxTili",
  3159. "lastTime",
  3160. "list"
  3161. ],
  3162. "description": "返回合成信息"
  3163. },
  3164. "hc_PtlHcInfo_HcInfoList": {
  3165. "type": "object",
  3166. "properties": {},
  3167. "additionalProperties": {
  3168. "$ref": "#/components/schemas/hc_PtlHcInfo_HcInfoGeziInfo"
  3169. }
  3170. },
  3171. "hc_PtlHcMerge_ReqHcMerge": {
  3172. "type": "object",
  3173. "properties": {
  3174. "gzid1": {
  3175. "type": "string"
  3176. },
  3177. "gzid2": {
  3178. "type": "string"
  3179. }
  3180. },
  3181. "required": [
  3182. "gzid1",
  3183. "gzid2"
  3184. ],
  3185. "description": "点击两个格子合成"
  3186. },
  3187. "hc_PtlHcMerge_ResHcMerge": {
  3188. "type": "object",
  3189. "properties": {
  3190. "list": {
  3191. "type": "object",
  3192. "properties": {},
  3193. "additionalProperties": {
  3194. "$ref": "#/components/schemas/hc_PtlHcInfo_HcInfoGeziInfo"
  3195. }
  3196. },
  3197. "items": {
  3198. "type": "array",
  3199. "items": {
  3200. "type": "array",
  3201. "items": {
  3202. "type": "number"
  3203. }
  3204. }
  3205. }
  3206. },
  3207. "required": [
  3208. "list",
  3209. "items"
  3210. ],
  3211. "description": "返回合成信息"
  3212. },
  3213. "hc_PtlHcSell_ReqHcSell": {
  3214. "type": "object",
  3215. "properties": {
  3216. "gzid": {
  3217. "type": "string"
  3218. }
  3219. },
  3220. "required": [
  3221. "gzid"
  3222. ],
  3223. "description": "请求接口 出售"
  3224. },
  3225. "hc_PtlHcSell_ResHcSell": {
  3226. "type": "object",
  3227. "properties": {
  3228. "list": {
  3229. "type": "object",
  3230. "properties": {},
  3231. "additionalProperties": {
  3232. "$ref": "#/components/schemas/hc_PtlHcInfo_HcInfoGeziInfo"
  3233. }
  3234. },
  3235. "items": {
  3236. "type": "array",
  3237. "items": {
  3238. "type": "array",
  3239. "items": {
  3240. "type": "number"
  3241. }
  3242. }
  3243. }
  3244. },
  3245. "required": [
  3246. "list",
  3247. "items"
  3248. ],
  3249. "description": "返回信息"
  3250. },
  3251. "hc_server_MsgHcTili_s_MsgHcTili_s": {
  3252. "type": "object",
  3253. "properties": {
  3254. "tili": {
  3255. "type": "number"
  3256. },
  3257. "maxTili": {
  3258. "type": "number"
  3259. },
  3260. "lastTime": {
  3261. "type": "number"
  3262. }
  3263. },
  3264. "required": [
  3265. "tili",
  3266. "maxTili",
  3267. "lastTime"
  3268. ],
  3269. "description": "msg推送信息"
  3270. },
  3271. "item_PtlItemInfo_ReqItemInfo": {
  3272. "type": "object",
  3273. "properties": {},
  3274. "description": "获取道具信息"
  3275. },
  3276. "item_PtlItemInfo_ResItemInfo": {
  3277. "type": "object",
  3278. "properties": {},
  3279. "additionalProperties": {
  3280. "type": "number"
  3281. },
  3282. "description": "返回道具信息"
  3283. },
  3284. "item_server_MsgItemChange_s_MsgItemChange_s": {
  3285. "type": "object",
  3286. "properties": {},
  3287. "additionalProperties": {
  3288. "type": "number"
  3289. },
  3290. "description": "后端推送道具变化信息"
  3291. },
  3292. "mail_PtlMailDelAll_ReqMailDelAll": {
  3293. "type": "object",
  3294. "properties": {},
  3295. "description": "请求接口"
  3296. },
  3297. "mail_PtlMailDelAll_ResMailDelAll": {
  3298. "type": "object",
  3299. "properties": {},
  3300. "additionalProperties": {
  3301. "type": "object",
  3302. "properties": {
  3303. "ets": {
  3304. "type": "number"
  3305. }
  3306. },
  3307. "required": [
  3308. "ets"
  3309. ]
  3310. },
  3311. "description": "返回信息"
  3312. },
  3313. "mail_PtlMailDelOne_ReqMailDelOne": {
  3314. "type": "object",
  3315. "properties": {
  3316. "id": {
  3317. "type": "string"
  3318. }
  3319. },
  3320. "required": [
  3321. "id"
  3322. ],
  3323. "description": "请求接口"
  3324. },
  3325. "mail_PtlMailDelOne_ResMailDelOne": {
  3326. "type": "object",
  3327. "properties": {},
  3328. "additionalProperties": {
  3329. "type": "object",
  3330. "properties": {
  3331. "ets": {
  3332. "type": "number"
  3333. }
  3334. },
  3335. "required": [
  3336. "ets"
  3337. ]
  3338. },
  3339. "description": "返回信息"
  3340. },
  3341. "mail_PtlMailInfo_ReqMailInfo": {
  3342. "type": "object",
  3343. "properties": {},
  3344. "description": "请求邮件信息"
  3345. },
  3346. "mail_PtlMailInfo_ResMailInfo": {
  3347. "type": "object",
  3348. "properties": {},
  3349. "additionalProperties": {
  3350. "$ref": "#/components/schemas/mail_PtlMailInfo_MailInfo"
  3351. },
  3352. "description": "返回邮件信息列表"
  3353. },
  3354. "mail_PtlMailInfo_MailInfo": {
  3355. "type": "object",
  3356. "properties": {
  3357. "id": {
  3358. "type": "string"
  3359. },
  3360. "title": {
  3361. "type": "string"
  3362. },
  3363. "content": {
  3364. "type": "string"
  3365. },
  3366. "items": {
  3367. "type": "array",
  3368. "items": {
  3369. "type": "array",
  3370. "items": {
  3371. "type": "number"
  3372. }
  3373. }
  3374. },
  3375. "fts": {
  3376. "type": "number"
  3377. },
  3378. "rts": {
  3379. "type": "number"
  3380. },
  3381. "ets": {
  3382. "type": "number"
  3383. },
  3384. "dts": {
  3385. "type": "number"
  3386. }
  3387. },
  3388. "required": [
  3389. "id",
  3390. "title",
  3391. "content",
  3392. "items",
  3393. "fts",
  3394. "rts",
  3395. "ets",
  3396. "dts"
  3397. ]
  3398. },
  3399. "mail_PtlMailRwdAll_ReqMailRwdAll": {
  3400. "type": "object",
  3401. "properties": {},
  3402. "description": "请求接口"
  3403. },
  3404. "mail_PtlMailRwdAll_ResMailRwdAll": {
  3405. "type": "object",
  3406. "properties": {},
  3407. "additionalProperties": {
  3408. "type": "object",
  3409. "properties": {
  3410. "rts": {
  3411. "type": "number"
  3412. }
  3413. },
  3414. "required": [
  3415. "rts"
  3416. ]
  3417. },
  3418. "description": "返回信息"
  3419. },
  3420. "mail_PtlMailRwdOne_ReqMailRwdOne": {
  3421. "type": "object",
  3422. "properties": {
  3423. "id": {
  3424. "type": "string"
  3425. }
  3426. },
  3427. "required": [
  3428. "id"
  3429. ],
  3430. "description": "请求接口"
  3431. },
  3432. "mail_PtlMailRwdOne_ResMailRwdOne": {
  3433. "type": "object",
  3434. "properties": {},
  3435. "additionalProperties": {
  3436. "type": "object",
  3437. "properties": {
  3438. "rts": {
  3439. "type": "number"
  3440. }
  3441. },
  3442. "required": [
  3443. "rts"
  3444. ]
  3445. },
  3446. "description": "返回信息"
  3447. },
  3448. "mail_server_MsgMailNew_s_MsgMailNew_s": {
  3449. "type": "object",
  3450. "properties": {},
  3451. "additionalProperties": {
  3452. "$ref": "#/components/schemas/mail_PtlMailInfo_MailInfo"
  3453. }
  3454. },
  3455. "plat_PtlPlatLogin_ReqPlatLogin": {
  3456. "type": "object",
  3457. "properties": {
  3458. "pid": {
  3459. "type": "string"
  3460. },
  3461. "param": {
  3462. "type": "array",
  3463. "items": {
  3464. "type": "string"
  3465. }
  3466. }
  3467. },
  3468. "required": [
  3469. "pid",
  3470. "param"
  3471. ],
  3472. "description": "平台登录"
  3473. },
  3474. "plat_PtlPlatLogin_ResPlatLogin": {
  3475. "type": "object",
  3476. "properties": {
  3477. "openId": {
  3478. "type": "string"
  3479. },
  3480. "token": {
  3481. "type": "string"
  3482. },
  3483. "noticeWais": {
  3484. "type": "array",
  3485. "items": {
  3486. "$ref": "#/components/schemas/plat_PtlPlatLogin_Notices"
  3487. }
  3488. }
  3489. },
  3490. "required": [
  3491. "openId",
  3492. "token",
  3493. "noticeWais"
  3494. ],
  3495. "description": "返回平台登录信息"
  3496. },
  3497. "plat_PtlPlatLogin_Notices": {
  3498. "type": "object",
  3499. "properties": {
  3500. "type": {
  3501. "type": "number"
  3502. },
  3503. "title": {
  3504. "type": "string"
  3505. },
  3506. "content": {
  3507. "type": "string"
  3508. }
  3509. },
  3510. "required": [
  3511. "type",
  3512. "title",
  3513. "content"
  3514. ]
  3515. },
  3516. "player_PtlPlayerLogin_ReqPlayerLogin": {
  3517. "type": "object",
  3518. "properties": {
  3519. "pid": {
  3520. "type": "string"
  3521. },
  3522. "openId": {
  3523. "type": "string"
  3524. },
  3525. "lang": {
  3526. "type": "string"
  3527. },
  3528. "plat": {
  3529. "type": "string"
  3530. },
  3531. "device": {
  3532. "type": "string"
  3533. },
  3534. "parms": {
  3535. "type": "array",
  3536. "items": {
  3537. "type": "string"
  3538. }
  3539. }
  3540. },
  3541. "required": [
  3542. "pid",
  3543. "openId",
  3544. "lang",
  3545. "plat",
  3546. "device",
  3547. "parms"
  3548. ],
  3549. "description": "账号登录"
  3550. },
  3551. "player_PtlPlayerLogin_ResPlayerLogin": {
  3552. "type": "object",
  3553. "properties": {
  3554. "uid": {
  3555. "type": "string"
  3556. },
  3557. "sid": {
  3558. "type": "string"
  3559. },
  3560. "list": {
  3561. "type": "object",
  3562. "properties": {},
  3563. "additionalProperties": {
  3564. "$ref": "#/components/schemas/player_PtlPlayerLogin_ResLoginList"
  3565. }
  3566. },
  3567. "token": {
  3568. "type": "string"
  3569. },
  3570. "qufuList": {
  3571. "type": "object",
  3572. "properties": {},
  3573. "additionalProperties": {
  3574. "$ref": "#/components/schemas/player_PtlPlayerLogin_qufuInfo"
  3575. }
  3576. },
  3577. "switch": {
  3578. "type": "object",
  3579. "properties": {},
  3580. "additionalProperties": {
  3581. "type": "object"
  3582. }
  3583. },
  3584. "orderList": {
  3585. "type": "object",
  3586. "properties": {},
  3587. "additionalProperties": {
  3588. "$ref": "#/components/schemas/player_PtlPlayerLogin_OrderList"
  3589. }
  3590. },
  3591. "wsUrl": {
  3592. "type": "string"
  3593. }
  3594. },
  3595. "required": [
  3596. "uid",
  3597. "sid",
  3598. "list",
  3599. "token",
  3600. "qufuList",
  3601. "switch",
  3602. "orderList",
  3603. "wsUrl"
  3604. ],
  3605. "description": "返回账号登录信息"
  3606. },
  3607. "player_PtlPlayerLogin_ResLoginList": {
  3608. "type": "object",
  3609. "properties": {
  3610. "uuid": {
  3611. "type": "string"
  3612. },
  3613. "name": {
  3614. "type": "string"
  3615. },
  3616. "level": {
  3617. "type": "number"
  3618. },
  3619. "lastlogin": {
  3620. "type": "number"
  3621. }
  3622. },
  3623. "required": [
  3624. "uuid",
  3625. "name",
  3626. "level",
  3627. "lastlogin"
  3628. ],
  3629. "description": "账号下角色信息"
  3630. },
  3631. "player_PtlPlayerLogin_qufuInfo": {
  3632. "type": "object",
  3633. "properties": {
  3634. "sid": {
  3635. "type": "string"
  3636. },
  3637. "name": {
  3638. "type": "string"
  3639. },
  3640. "sName": {
  3641. "type": "string"
  3642. },
  3643. "openAt": {
  3644. "type": "number"
  3645. },
  3646. "status": {
  3647. "type": "string"
  3648. },
  3649. "heid": {
  3650. "type": "string"
  3651. },
  3652. "suofu": {
  3653. "type": "string"
  3654. },
  3655. "skin": {
  3656. "type": "string"
  3657. }
  3658. },
  3659. "required": [
  3660. "sid",
  3661. "name",
  3662. "sName",
  3663. "openAt",
  3664. "status",
  3665. "heid",
  3666. "suofu",
  3667. "skin"
  3668. ],
  3669. "description": "区服信息"
  3670. },
  3671. "player_PtlPlayerLogin_OrderList": {
  3672. "type": "object",
  3673. "properties": {
  3674. "rmb": {
  3675. "type": "number"
  3676. },
  3677. "money": {
  3678. "type": "number"
  3679. },
  3680. "desc": {
  3681. "type": "string"
  3682. },
  3683. "iid": {
  3684. "type": "string"
  3685. },
  3686. "daibi": {
  3687. "type": "number"
  3688. }
  3689. },
  3690. "required": [
  3691. "rmb",
  3692. "money",
  3693. "desc",
  3694. "iid",
  3695. "daibi"
  3696. ]
  3697. },
  3698. "task_PtlTaskInfo_ReqTaskInfo": {
  3699. "type": "object",
  3700. "properties": {},
  3701. "description": "获取主线任务"
  3702. },
  3703. "task_PtlTaskInfo_ResTaskInfo": {
  3704. "type": "object",
  3705. "properties": {
  3706. "id": {
  3707. "type": "number"
  3708. },
  3709. "cons": {
  3710. "type": "number"
  3711. }
  3712. },
  3713. "required": [
  3714. "id",
  3715. "cons"
  3716. ],
  3717. "description": "主线任务"
  3718. },
  3719. "task_PtlTaskRwd_ReqTaskRwd": {
  3720. "type": "object",
  3721. "properties": {},
  3722. "description": "请求领取任务奖励"
  3723. },
  3724. "task_PtlTaskRwd_ResTaskRwd": {
  3725. "type": "object",
  3726. "properties": {
  3727. "id": {
  3728. "type": "number"
  3729. },
  3730. "cons": {
  3731. "type": "number"
  3732. }
  3733. },
  3734. "required": [
  3735. "id",
  3736. "cons"
  3737. ],
  3738. "description": "领取任务奖励"
  3739. },
  3740. "task_server_MsgTaskCons_s_MsgTaskCons_s": {
  3741. "type": "object",
  3742. "properties": {
  3743. "cons": {
  3744. "type": "number"
  3745. }
  3746. },
  3747. "required": [
  3748. "cons"
  3749. ],
  3750. "description": "主线任务进度"
  3751. },
  3752. "user_PtlUserLogin_ReqUserLogin": {
  3753. "type": "object",
  3754. "properties": {
  3755. "sid": {
  3756. "type": "string"
  3757. },
  3758. "uid": {
  3759. "type": "string"
  3760. },
  3761. "token": {
  3762. "type": "string"
  3763. }
  3764. },
  3765. "required": [
  3766. "sid",
  3767. "uid",
  3768. "token"
  3769. ],
  3770. "description": "角色登录"
  3771. },
  3772. "user_PtlUserLogin_ResUserLogin": {
  3773. "type": "object",
  3774. "properties": {
  3775. "uuid": {
  3776. "type": "string"
  3777. },
  3778. "sid": {
  3779. "type": "string"
  3780. },
  3781. "name": {
  3782. "type": "string"
  3783. },
  3784. "head": {
  3785. "type": "string"
  3786. },
  3787. "wxhead": {
  3788. "type": "string"
  3789. },
  3790. "sex": {
  3791. "type": "number"
  3792. },
  3793. "level": {
  3794. "type": "number"
  3795. },
  3796. "exp": {
  3797. "type": "number"
  3798. },
  3799. "regtime": {
  3800. "type": "number"
  3801. },
  3802. "loginTime": {
  3803. "type": "number"
  3804. },
  3805. "lastlogin": {
  3806. "type": "number"
  3807. },
  3808. "lang": {
  3809. "type": "string"
  3810. },
  3811. "iscz": {
  3812. "type": "number"
  3813. },
  3814. "rmbcz": {
  3815. "type": "number"
  3816. },
  3817. "power": {
  3818. "type": "number"
  3819. }
  3820. },
  3821. "required": [
  3822. "uuid",
  3823. "sid",
  3824. "name",
  3825. "head",
  3826. "wxhead",
  3827. "sex",
  3828. "level",
  3829. "exp",
  3830. "regtime",
  3831. "loginTime",
  3832. "lastlogin",
  3833. "lang",
  3834. "iscz",
  3835. "rmbcz",
  3836. "power"
  3837. ],
  3838. "description": "返回角色信息"
  3839. },
  3840. "user_PtlUserNotices_ReqUserNotices": {
  3841. "type": "object",
  3842. "properties": {},
  3843. "description": "请求接口 获取内部公告"
  3844. },
  3845. "user_PtlUserNotices_ResUserNotices": {
  3846. "type": "object",
  3847. "properties": {
  3848. "notices": {
  3849. "type": "array",
  3850. "items": {
  3851. "$ref": "#/components/schemas/plat_PtlPlatLogin_Notices"
  3852. }
  3853. }
  3854. },
  3855. "required": [
  3856. "notices"
  3857. ],
  3858. "description": "返回信息"
  3859. },
  3860. "user_PtlUserSetName_ReqUserSetName": {
  3861. "type": "object",
  3862. "properties": {
  3863. "name": {
  3864. "type": "string"
  3865. }
  3866. },
  3867. "required": [
  3868. "name"
  3869. ],
  3870. "description": "角色改名"
  3871. },
  3872. "user_PtlUserSetName_ResUserSetName": {
  3873. "type": "object",
  3874. "properties": {
  3875. "name": {
  3876. "type": "string"
  3877. }
  3878. },
  3879. "required": [
  3880. "name"
  3881. ],
  3882. "description": "返回修改后的角色名字"
  3883. },
  3884. "user_PtlUserUseCode_ReqUserUseCode": {
  3885. "type": "object",
  3886. "properties": {
  3887. "key": {
  3888. "type": "string"
  3889. }
  3890. },
  3891. "required": [
  3892. "key"
  3893. ],
  3894. "description": "请求接口 使用兑换码"
  3895. },
  3896. "user_PtlUserUseCode_ResUserUseCode": {
  3897. "type": "object",
  3898. "properties": {},
  3899. "description": "返回信息"
  3900. },
  3901. "user_server_MsgUserUplevel_s_MsgUserUplevel_s": {
  3902. "type": "object",
  3903. "properties": {
  3904. "level": {
  3905. "type": "number"
  3906. },
  3907. "exp": {
  3908. "type": "number"
  3909. }
  3910. },
  3911. "required": [
  3912. "level",
  3913. "exp"
  3914. ],
  3915. "description": "升级"
  3916. },
  3917. "?bson_ObjectID": {
  3918. "type": "string"
  3919. },
  3920. "?bson_ObjectId": {
  3921. "type": "string"
  3922. },
  3923. "?mongodb_ObjectID": {
  3924. "type": "string"
  3925. },
  3926. "?mongodb_ObjectId": {
  3927. "type": "string"
  3928. }
  3929. },
  3930. "responses": {
  3931. "error": {
  3932. "description": "Error",
  3933. "content": {
  3934. "application/json": {
  3935. "schema": {
  3936. "type": "object",
  3937. "title": "API 错误",
  3938. "description": "业务错误(ApiError)返回 HTTP 状态码 200,其它错误返回 HTTP 状态码 500",
  3939. "properties": {
  3940. "isSucc": {
  3941. "type": "boolean",
  3942. "enum": [
  3943. false
  3944. ],
  3945. "default": false
  3946. },
  3947. "err": {
  3948. "type": "object",
  3949. "description": "TsrpcError",
  3950. "properties": {
  3951. "message": {
  3952. "type": "string"
  3953. },
  3954. "type": {
  3955. "type": "string",
  3956. "enum": [
  3957. "ApiError",
  3958. "NetworkError",
  3959. "ServerError",
  3960. "ClientError"
  3961. ]
  3962. },
  3963. "code": {
  3964. "oneOf": [
  3965. {
  3966. "type": "string"
  3967. },
  3968. {
  3969. "type": "integer"
  3970. }
  3971. ],
  3972. "nullable": true
  3973. }
  3974. },
  3975. "required": [
  3976. "message",
  3977. "type"
  3978. ]
  3979. }
  3980. }
  3981. }
  3982. }
  3983. }
  3984. }
  3985. }
  3986. }
  3987. }