openapi.json 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450
  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/updateMail": {
  902. "post": {
  903. "tags": [
  904. "admin"
  905. ],
  906. "operationId": "admin/updateMail",
  907. "requestBody": {
  908. "description": "Req<updateMail>",
  909. "content": {
  910. "application/json": {
  911. "schema": {
  912. "$ref": "#/components/schemas/admin_PtlupdateMail_RequpdateMail"
  913. }
  914. }
  915. }
  916. },
  917. "responses": {
  918. "200": {
  919. "description": "Success",
  920. "content": {
  921. "application/json": {
  922. "schema": {
  923. "type": "object",
  924. "description": "ApiReturn<ResupdateMail>",
  925. "properties": {
  926. "isSucc": {
  927. "type": "boolean",
  928. "enum": [
  929. true
  930. ],
  931. "default": true
  932. },
  933. "res": {
  934. "$ref": "#/components/schemas/admin_PtlupdateMail_ResupdateMail"
  935. }
  936. }
  937. }
  938. }
  939. }
  940. },
  941. "default": {
  942. "description": "Error",
  943. "$ref": "#/components/responses/error"
  944. }
  945. }
  946. }
  947. },
  948. "/admin/updateQuFu": {
  949. "post": {
  950. "tags": [
  951. "admin"
  952. ],
  953. "operationId": "admin/updateQuFu",
  954. "requestBody": {
  955. "description": "Req<updateQuFu>",
  956. "content": {
  957. "application/json": {
  958. "schema": {
  959. "$ref": "#/components/schemas/admin_PtlupdateQuFu_RequpdateQuFu"
  960. }
  961. }
  962. }
  963. },
  964. "responses": {
  965. "200": {
  966. "description": "Success",
  967. "content": {
  968. "application/json": {
  969. "schema": {
  970. "type": "object",
  971. "description": "ApiReturn<ResupdateQuFu>",
  972. "properties": {
  973. "isSucc": {
  974. "type": "boolean",
  975. "enum": [
  976. true
  977. ],
  978. "default": true
  979. },
  980. "res": {
  981. "$ref": "#/components/schemas/admin_PtlupdateQuFu_ResupdateQuFu"
  982. }
  983. }
  984. }
  985. }
  986. }
  987. },
  988. "default": {
  989. "description": "Error",
  990. "$ref": "#/components/responses/error"
  991. }
  992. }
  993. }
  994. },
  995. "/admin/updateSetting": {
  996. "post": {
  997. "tags": [
  998. "admin"
  999. ],
  1000. "operationId": "admin/updateSetting",
  1001. "requestBody": {
  1002. "description": "Req<updateSetting>",
  1003. "content": {
  1004. "application/json": {
  1005. "schema": {
  1006. "$ref": "#/components/schemas/admin_PtlupdateSetting_RequpdateSetting"
  1007. }
  1008. }
  1009. }
  1010. },
  1011. "responses": {
  1012. "200": {
  1013. "description": "Success",
  1014. "content": {
  1015. "application/json": {
  1016. "schema": {
  1017. "type": "object",
  1018. "description": "ApiReturn<ResupdateSetting>",
  1019. "properties": {
  1020. "isSucc": {
  1021. "type": "boolean",
  1022. "enum": [
  1023. true
  1024. ],
  1025. "default": true
  1026. },
  1027. "res": {
  1028. "$ref": "#/components/schemas/admin_PtlupdateSetting_ResupdateSetting"
  1029. }
  1030. }
  1031. }
  1032. }
  1033. }
  1034. },
  1035. "default": {
  1036. "description": "Error",
  1037. "$ref": "#/components/responses/error"
  1038. }
  1039. }
  1040. }
  1041. },
  1042. "/admin/xiazai": {
  1043. "post": {
  1044. "tags": [
  1045. "admin"
  1046. ],
  1047. "operationId": "admin/xiazai",
  1048. "requestBody": {
  1049. "description": "Req<xiazai>",
  1050. "content": {
  1051. "application/json": {
  1052. "schema": {
  1053. "$ref": "#/components/schemas/admin_Ptlxiazai_Reqxiazai"
  1054. }
  1055. }
  1056. }
  1057. },
  1058. "responses": {
  1059. "200": {
  1060. "description": "Success",
  1061. "content": {
  1062. "application/json": {
  1063. "schema": {
  1064. "type": "object",
  1065. "description": "ApiReturn<Resxiazai>",
  1066. "properties": {
  1067. "isSucc": {
  1068. "type": "boolean",
  1069. "enum": [
  1070. true
  1071. ],
  1072. "default": true
  1073. },
  1074. "res": {
  1075. "$ref": "#/components/schemas/admin_Ptlxiazai_Resxiazai"
  1076. }
  1077. }
  1078. }
  1079. }
  1080. }
  1081. },
  1082. "default": {
  1083. "description": "Error",
  1084. "$ref": "#/components/responses/error"
  1085. }
  1086. }
  1087. }
  1088. },
  1089. "/eps/EpsInfo": {
  1090. "post": {
  1091. "tags": [
  1092. "eps"
  1093. ],
  1094. "operationId": "eps/EpsInfo",
  1095. "requestBody": {
  1096. "description": "Req<EpsInfo>",
  1097. "content": {
  1098. "application/json": {
  1099. "schema": {
  1100. "$ref": "#/components/schemas/eps_PtlEpsInfo_ReqEpsInfo"
  1101. }
  1102. }
  1103. }
  1104. },
  1105. "responses": {
  1106. "200": {
  1107. "description": "Success",
  1108. "content": {
  1109. "application/json": {
  1110. "schema": {
  1111. "type": "object",
  1112. "description": "ApiReturn<ResEpsInfo>",
  1113. "properties": {
  1114. "isSucc": {
  1115. "type": "boolean",
  1116. "enum": [
  1117. true
  1118. ],
  1119. "default": true
  1120. },
  1121. "res": {
  1122. "$ref": "#/components/schemas/eps_PtlEpsInfo_ResEpsInfo"
  1123. }
  1124. }
  1125. }
  1126. }
  1127. }
  1128. },
  1129. "default": {
  1130. "description": "Error",
  1131. "$ref": "#/components/responses/error"
  1132. }
  1133. }
  1134. }
  1135. },
  1136. "/hc/HcInfo": {
  1137. "post": {
  1138. "tags": [
  1139. "hc"
  1140. ],
  1141. "operationId": "hc/HcInfo",
  1142. "requestBody": {
  1143. "description": "Req<HcInfo>",
  1144. "content": {
  1145. "application/json": {
  1146. "schema": {
  1147. "$ref": "#/components/schemas/hc_PtlHcInfo_ReqHcInfo"
  1148. }
  1149. }
  1150. }
  1151. },
  1152. "responses": {
  1153. "200": {
  1154. "description": "Success",
  1155. "content": {
  1156. "application/json": {
  1157. "schema": {
  1158. "type": "object",
  1159. "description": "ApiReturn<ResHcInfo>",
  1160. "properties": {
  1161. "isSucc": {
  1162. "type": "boolean",
  1163. "enum": [
  1164. true
  1165. ],
  1166. "default": true
  1167. },
  1168. "res": {
  1169. "$ref": "#/components/schemas/hc_PtlHcInfo_ResHcInfo"
  1170. }
  1171. }
  1172. }
  1173. }
  1174. }
  1175. },
  1176. "default": {
  1177. "description": "Error",
  1178. "$ref": "#/components/responses/error"
  1179. }
  1180. }
  1181. }
  1182. },
  1183. "/hc/HcMerge": {
  1184. "post": {
  1185. "tags": [
  1186. "hc"
  1187. ],
  1188. "operationId": "hc/HcMerge",
  1189. "requestBody": {
  1190. "description": "Req<HcMerge>",
  1191. "content": {
  1192. "application/json": {
  1193. "schema": {
  1194. "$ref": "#/components/schemas/hc_PtlHcMerge_ReqHcMerge"
  1195. }
  1196. }
  1197. }
  1198. },
  1199. "responses": {
  1200. "200": {
  1201. "description": "Success",
  1202. "content": {
  1203. "application/json": {
  1204. "schema": {
  1205. "type": "object",
  1206. "description": "ApiReturn<ResHcMerge>",
  1207. "properties": {
  1208. "isSucc": {
  1209. "type": "boolean",
  1210. "enum": [
  1211. true
  1212. ],
  1213. "default": true
  1214. },
  1215. "res": {
  1216. "$ref": "#/components/schemas/hc_PtlHcMerge_ResHcMerge"
  1217. }
  1218. }
  1219. }
  1220. }
  1221. }
  1222. },
  1223. "default": {
  1224. "description": "Error",
  1225. "$ref": "#/components/responses/error"
  1226. }
  1227. }
  1228. }
  1229. },
  1230. "/item/ItemInfo": {
  1231. "post": {
  1232. "tags": [
  1233. "item"
  1234. ],
  1235. "operationId": "item/ItemInfo",
  1236. "requestBody": {
  1237. "description": "Req<ItemInfo>",
  1238. "content": {
  1239. "application/json": {
  1240. "schema": {
  1241. "$ref": "#/components/schemas/item_PtlItemInfo_ReqItemInfo"
  1242. }
  1243. }
  1244. }
  1245. },
  1246. "responses": {
  1247. "200": {
  1248. "description": "Success",
  1249. "content": {
  1250. "application/json": {
  1251. "schema": {
  1252. "type": "object",
  1253. "description": "ApiReturn<ResItemInfo>",
  1254. "properties": {
  1255. "isSucc": {
  1256. "type": "boolean",
  1257. "enum": [
  1258. true
  1259. ],
  1260. "default": true
  1261. },
  1262. "res": {
  1263. "$ref": "#/components/schemas/item_PtlItemInfo_ResItemInfo"
  1264. }
  1265. }
  1266. }
  1267. }
  1268. }
  1269. },
  1270. "default": {
  1271. "description": "Error",
  1272. "$ref": "#/components/responses/error"
  1273. }
  1274. }
  1275. }
  1276. },
  1277. "/mail/MailDelAll": {
  1278. "post": {
  1279. "tags": [
  1280. "mail"
  1281. ],
  1282. "operationId": "mail/MailDelAll",
  1283. "requestBody": {
  1284. "description": "Req<MailDelAll>",
  1285. "content": {
  1286. "application/json": {
  1287. "schema": {
  1288. "$ref": "#/components/schemas/mail_PtlMailDelAll_ReqMailDelAll"
  1289. }
  1290. }
  1291. }
  1292. },
  1293. "responses": {
  1294. "200": {
  1295. "description": "Success",
  1296. "content": {
  1297. "application/json": {
  1298. "schema": {
  1299. "type": "object",
  1300. "description": "ApiReturn<ResMailDelAll>",
  1301. "properties": {
  1302. "isSucc": {
  1303. "type": "boolean",
  1304. "enum": [
  1305. true
  1306. ],
  1307. "default": true
  1308. },
  1309. "res": {
  1310. "$ref": "#/components/schemas/mail_PtlMailDelAll_ResMailDelAll"
  1311. }
  1312. }
  1313. }
  1314. }
  1315. }
  1316. },
  1317. "default": {
  1318. "description": "Error",
  1319. "$ref": "#/components/responses/error"
  1320. }
  1321. }
  1322. }
  1323. },
  1324. "/mail/MailDelOne": {
  1325. "post": {
  1326. "tags": [
  1327. "mail"
  1328. ],
  1329. "operationId": "mail/MailDelOne",
  1330. "requestBody": {
  1331. "description": "Req<MailDelOne>",
  1332. "content": {
  1333. "application/json": {
  1334. "schema": {
  1335. "$ref": "#/components/schemas/mail_PtlMailDelOne_ReqMailDelOne"
  1336. }
  1337. }
  1338. }
  1339. },
  1340. "responses": {
  1341. "200": {
  1342. "description": "Success",
  1343. "content": {
  1344. "application/json": {
  1345. "schema": {
  1346. "type": "object",
  1347. "description": "ApiReturn<ResMailDelOne>",
  1348. "properties": {
  1349. "isSucc": {
  1350. "type": "boolean",
  1351. "enum": [
  1352. true
  1353. ],
  1354. "default": true
  1355. },
  1356. "res": {
  1357. "$ref": "#/components/schemas/mail_PtlMailDelOne_ResMailDelOne"
  1358. }
  1359. }
  1360. }
  1361. }
  1362. }
  1363. },
  1364. "default": {
  1365. "description": "Error",
  1366. "$ref": "#/components/responses/error"
  1367. }
  1368. }
  1369. }
  1370. },
  1371. "/mail/MailInfo": {
  1372. "post": {
  1373. "tags": [
  1374. "mail"
  1375. ],
  1376. "operationId": "mail/MailInfo",
  1377. "requestBody": {
  1378. "description": "Req<MailInfo>",
  1379. "content": {
  1380. "application/json": {
  1381. "schema": {
  1382. "$ref": "#/components/schemas/mail_PtlMailInfo_ReqMailInfo"
  1383. }
  1384. }
  1385. }
  1386. },
  1387. "responses": {
  1388. "200": {
  1389. "description": "Success",
  1390. "content": {
  1391. "application/json": {
  1392. "schema": {
  1393. "type": "object",
  1394. "description": "ApiReturn<ResMailInfo>",
  1395. "properties": {
  1396. "isSucc": {
  1397. "type": "boolean",
  1398. "enum": [
  1399. true
  1400. ],
  1401. "default": true
  1402. },
  1403. "res": {
  1404. "$ref": "#/components/schemas/mail_PtlMailInfo_ResMailInfo"
  1405. }
  1406. }
  1407. }
  1408. }
  1409. }
  1410. },
  1411. "default": {
  1412. "description": "Error",
  1413. "$ref": "#/components/responses/error"
  1414. }
  1415. }
  1416. }
  1417. },
  1418. "/mail/MailRwdAll": {
  1419. "post": {
  1420. "tags": [
  1421. "mail"
  1422. ],
  1423. "operationId": "mail/MailRwdAll",
  1424. "requestBody": {
  1425. "description": "Req<MailRwdAll>",
  1426. "content": {
  1427. "application/json": {
  1428. "schema": {
  1429. "$ref": "#/components/schemas/mail_PtlMailRwdAll_ReqMailRwdAll"
  1430. }
  1431. }
  1432. }
  1433. },
  1434. "responses": {
  1435. "200": {
  1436. "description": "Success",
  1437. "content": {
  1438. "application/json": {
  1439. "schema": {
  1440. "type": "object",
  1441. "description": "ApiReturn<ResMailRwdAll>",
  1442. "properties": {
  1443. "isSucc": {
  1444. "type": "boolean",
  1445. "enum": [
  1446. true
  1447. ],
  1448. "default": true
  1449. },
  1450. "res": {
  1451. "$ref": "#/components/schemas/mail_PtlMailRwdAll_ResMailRwdAll"
  1452. }
  1453. }
  1454. }
  1455. }
  1456. }
  1457. },
  1458. "default": {
  1459. "description": "Error",
  1460. "$ref": "#/components/responses/error"
  1461. }
  1462. }
  1463. }
  1464. },
  1465. "/mail/MailRwdOne": {
  1466. "post": {
  1467. "tags": [
  1468. "mail"
  1469. ],
  1470. "operationId": "mail/MailRwdOne",
  1471. "requestBody": {
  1472. "description": "Req<MailRwdOne>",
  1473. "content": {
  1474. "application/json": {
  1475. "schema": {
  1476. "$ref": "#/components/schemas/mail_PtlMailRwdOne_ReqMailRwdOne"
  1477. }
  1478. }
  1479. }
  1480. },
  1481. "responses": {
  1482. "200": {
  1483. "description": "Success",
  1484. "content": {
  1485. "application/json": {
  1486. "schema": {
  1487. "type": "object",
  1488. "description": "ApiReturn<ResMailRwdOne>",
  1489. "properties": {
  1490. "isSucc": {
  1491. "type": "boolean",
  1492. "enum": [
  1493. true
  1494. ],
  1495. "default": true
  1496. },
  1497. "res": {
  1498. "$ref": "#/components/schemas/mail_PtlMailRwdOne_ResMailRwdOne"
  1499. }
  1500. }
  1501. }
  1502. }
  1503. }
  1504. },
  1505. "default": {
  1506. "description": "Error",
  1507. "$ref": "#/components/responses/error"
  1508. }
  1509. }
  1510. }
  1511. },
  1512. "/plat/PlatLogin": {
  1513. "post": {
  1514. "tags": [
  1515. "plat"
  1516. ],
  1517. "operationId": "plat/PlatLogin",
  1518. "requestBody": {
  1519. "description": "Req<PlatLogin>",
  1520. "content": {
  1521. "application/json": {
  1522. "schema": {
  1523. "$ref": "#/components/schemas/plat_PtlPlatLogin_ReqPlatLogin"
  1524. }
  1525. }
  1526. }
  1527. },
  1528. "responses": {
  1529. "200": {
  1530. "description": "Success",
  1531. "content": {
  1532. "application/json": {
  1533. "schema": {
  1534. "type": "object",
  1535. "description": "ApiReturn<ResPlatLogin>",
  1536. "properties": {
  1537. "isSucc": {
  1538. "type": "boolean",
  1539. "enum": [
  1540. true
  1541. ],
  1542. "default": true
  1543. },
  1544. "res": {
  1545. "$ref": "#/components/schemas/plat_PtlPlatLogin_ResPlatLogin"
  1546. }
  1547. }
  1548. }
  1549. }
  1550. }
  1551. },
  1552. "default": {
  1553. "description": "Error",
  1554. "$ref": "#/components/responses/error"
  1555. }
  1556. }
  1557. }
  1558. },
  1559. "/player/PlayerLogin": {
  1560. "post": {
  1561. "tags": [
  1562. "player"
  1563. ],
  1564. "operationId": "player/PlayerLogin",
  1565. "requestBody": {
  1566. "description": "Req<PlayerLogin>",
  1567. "content": {
  1568. "application/json": {
  1569. "schema": {
  1570. "$ref": "#/components/schemas/player_PtlPlayerLogin_ReqPlayerLogin"
  1571. }
  1572. }
  1573. }
  1574. },
  1575. "responses": {
  1576. "200": {
  1577. "description": "Success",
  1578. "content": {
  1579. "application/json": {
  1580. "schema": {
  1581. "type": "object",
  1582. "description": "ApiReturn<ResPlayerLogin>",
  1583. "properties": {
  1584. "isSucc": {
  1585. "type": "boolean",
  1586. "enum": [
  1587. true
  1588. ],
  1589. "default": true
  1590. },
  1591. "res": {
  1592. "$ref": "#/components/schemas/player_PtlPlayerLogin_ResPlayerLogin"
  1593. }
  1594. }
  1595. }
  1596. }
  1597. }
  1598. },
  1599. "default": {
  1600. "description": "Error",
  1601. "$ref": "#/components/responses/error"
  1602. }
  1603. }
  1604. }
  1605. },
  1606. "/task/TaskInfo": {
  1607. "post": {
  1608. "tags": [
  1609. "task"
  1610. ],
  1611. "operationId": "task/TaskInfo",
  1612. "requestBody": {
  1613. "description": "Req<TaskInfo>",
  1614. "content": {
  1615. "application/json": {
  1616. "schema": {
  1617. "$ref": "#/components/schemas/task_PtlTaskInfo_ReqTaskInfo"
  1618. }
  1619. }
  1620. }
  1621. },
  1622. "responses": {
  1623. "200": {
  1624. "description": "Success",
  1625. "content": {
  1626. "application/json": {
  1627. "schema": {
  1628. "type": "object",
  1629. "description": "ApiReturn<ResTaskInfo>",
  1630. "properties": {
  1631. "isSucc": {
  1632. "type": "boolean",
  1633. "enum": [
  1634. true
  1635. ],
  1636. "default": true
  1637. },
  1638. "res": {
  1639. "$ref": "#/components/schemas/task_PtlTaskInfo_ResTaskInfo"
  1640. }
  1641. }
  1642. }
  1643. }
  1644. }
  1645. },
  1646. "default": {
  1647. "description": "Error",
  1648. "$ref": "#/components/responses/error"
  1649. }
  1650. }
  1651. }
  1652. },
  1653. "/task/TaskRwd": {
  1654. "post": {
  1655. "tags": [
  1656. "task"
  1657. ],
  1658. "operationId": "task/TaskRwd",
  1659. "requestBody": {
  1660. "description": "Req<TaskRwd>",
  1661. "content": {
  1662. "application/json": {
  1663. "schema": {
  1664. "$ref": "#/components/schemas/task_PtlTaskRwd_ReqTaskRwd"
  1665. }
  1666. }
  1667. }
  1668. },
  1669. "responses": {
  1670. "200": {
  1671. "description": "Success",
  1672. "content": {
  1673. "application/json": {
  1674. "schema": {
  1675. "type": "object",
  1676. "description": "ApiReturn<ResTaskRwd>",
  1677. "properties": {
  1678. "isSucc": {
  1679. "type": "boolean",
  1680. "enum": [
  1681. true
  1682. ],
  1683. "default": true
  1684. },
  1685. "res": {
  1686. "$ref": "#/components/schemas/task_PtlTaskRwd_ResTaskRwd"
  1687. }
  1688. }
  1689. }
  1690. }
  1691. }
  1692. },
  1693. "default": {
  1694. "description": "Error",
  1695. "$ref": "#/components/responses/error"
  1696. }
  1697. }
  1698. }
  1699. },
  1700. "/user/UserFight": {
  1701. "post": {
  1702. "tags": [
  1703. "user"
  1704. ],
  1705. "operationId": "user/UserFight",
  1706. "requestBody": {
  1707. "description": "Req<UserFight>",
  1708. "content": {
  1709. "application/json": {
  1710. "schema": {
  1711. "$ref": "#/components/schemas/user_PtlUserFight_ReqUserFight"
  1712. }
  1713. }
  1714. }
  1715. },
  1716. "responses": {
  1717. "200": {
  1718. "description": "Success",
  1719. "content": {
  1720. "application/json": {
  1721. "schema": {
  1722. "type": "object",
  1723. "description": "ApiReturn<ResUserFight>",
  1724. "properties": {
  1725. "isSucc": {
  1726. "type": "boolean",
  1727. "enum": [
  1728. true
  1729. ],
  1730. "default": true
  1731. },
  1732. "res": {
  1733. "$ref": "#/components/schemas/user_PtlUserFight_ResUserFight"
  1734. }
  1735. }
  1736. }
  1737. }
  1738. }
  1739. },
  1740. "default": {
  1741. "description": "Error",
  1742. "$ref": "#/components/responses/error"
  1743. }
  1744. }
  1745. }
  1746. },
  1747. "/user/UserLogin": {
  1748. "post": {
  1749. "tags": [
  1750. "user"
  1751. ],
  1752. "operationId": "user/UserLogin",
  1753. "requestBody": {
  1754. "description": "Req<UserLogin>",
  1755. "content": {
  1756. "application/json": {
  1757. "schema": {
  1758. "$ref": "#/components/schemas/user_PtlUserLogin_ReqUserLogin"
  1759. }
  1760. }
  1761. }
  1762. },
  1763. "responses": {
  1764. "200": {
  1765. "description": "Success",
  1766. "content": {
  1767. "application/json": {
  1768. "schema": {
  1769. "type": "object",
  1770. "description": "ApiReturn<ResUserLogin>",
  1771. "properties": {
  1772. "isSucc": {
  1773. "type": "boolean",
  1774. "enum": [
  1775. true
  1776. ],
  1777. "default": true
  1778. },
  1779. "res": {
  1780. "$ref": "#/components/schemas/user_PtlUserLogin_ResUserLogin"
  1781. }
  1782. }
  1783. }
  1784. }
  1785. }
  1786. },
  1787. "default": {
  1788. "description": "Error",
  1789. "$ref": "#/components/responses/error"
  1790. }
  1791. }
  1792. }
  1793. },
  1794. "/user/UserNotices": {
  1795. "post": {
  1796. "tags": [
  1797. "user"
  1798. ],
  1799. "operationId": "user/UserNotices",
  1800. "requestBody": {
  1801. "description": "Req<UserNotices>",
  1802. "content": {
  1803. "application/json": {
  1804. "schema": {
  1805. "$ref": "#/components/schemas/user_PtlUserNotices_ReqUserNotices"
  1806. }
  1807. }
  1808. }
  1809. },
  1810. "responses": {
  1811. "200": {
  1812. "description": "Success",
  1813. "content": {
  1814. "application/json": {
  1815. "schema": {
  1816. "type": "object",
  1817. "description": "ApiReturn<ResUserNotices>",
  1818. "properties": {
  1819. "isSucc": {
  1820. "type": "boolean",
  1821. "enum": [
  1822. true
  1823. ],
  1824. "default": true
  1825. },
  1826. "res": {
  1827. "$ref": "#/components/schemas/user_PtlUserNotices_ResUserNotices"
  1828. }
  1829. }
  1830. }
  1831. }
  1832. }
  1833. },
  1834. "default": {
  1835. "description": "Error",
  1836. "$ref": "#/components/responses/error"
  1837. }
  1838. }
  1839. }
  1840. },
  1841. "/user/UserSetName": {
  1842. "post": {
  1843. "tags": [
  1844. "user"
  1845. ],
  1846. "operationId": "user/UserSetName",
  1847. "requestBody": {
  1848. "description": "Req<UserSetName>",
  1849. "content": {
  1850. "application/json": {
  1851. "schema": {
  1852. "$ref": "#/components/schemas/user_PtlUserSetName_ReqUserSetName"
  1853. }
  1854. }
  1855. }
  1856. },
  1857. "responses": {
  1858. "200": {
  1859. "description": "Success",
  1860. "content": {
  1861. "application/json": {
  1862. "schema": {
  1863. "type": "object",
  1864. "description": "ApiReturn<ResUserSetName>",
  1865. "properties": {
  1866. "isSucc": {
  1867. "type": "boolean",
  1868. "enum": [
  1869. true
  1870. ],
  1871. "default": true
  1872. },
  1873. "res": {
  1874. "$ref": "#/components/schemas/user_PtlUserSetName_ResUserSetName"
  1875. }
  1876. }
  1877. }
  1878. }
  1879. }
  1880. },
  1881. "default": {
  1882. "description": "Error",
  1883. "$ref": "#/components/responses/error"
  1884. }
  1885. }
  1886. }
  1887. },
  1888. "/user/UserUseCode": {
  1889. "post": {
  1890. "tags": [
  1891. "user"
  1892. ],
  1893. "operationId": "user/UserUseCode",
  1894. "requestBody": {
  1895. "description": "Req<UserUseCode>",
  1896. "content": {
  1897. "application/json": {
  1898. "schema": {
  1899. "$ref": "#/components/schemas/user_PtlUserUseCode_ReqUserUseCode"
  1900. }
  1901. }
  1902. }
  1903. },
  1904. "responses": {
  1905. "200": {
  1906. "description": "Success",
  1907. "content": {
  1908. "application/json": {
  1909. "schema": {
  1910. "type": "object",
  1911. "description": "ApiReturn<ResUserUseCode>",
  1912. "properties": {
  1913. "isSucc": {
  1914. "type": "boolean",
  1915. "enum": [
  1916. true
  1917. ],
  1918. "default": true
  1919. },
  1920. "res": {
  1921. "$ref": "#/components/schemas/user_PtlUserUseCode_ResUserUseCode"
  1922. }
  1923. }
  1924. }
  1925. }
  1926. }
  1927. },
  1928. "default": {
  1929. "description": "Error",
  1930. "$ref": "#/components/responses/error"
  1931. }
  1932. }
  1933. }
  1934. }
  1935. },
  1936. "components": {
  1937. "schemas": {
  1938. "admin_PtladdBuMa_ReqaddBuMa": {
  1939. "type": "object",
  1940. "properties": {
  1941. "id": {
  1942. "type": "string"
  1943. },
  1944. "addCount": {
  1945. "type": "number"
  1946. }
  1947. },
  1948. "required": [
  1949. "id",
  1950. "addCount"
  1951. ]
  1952. },
  1953. "admin_PtladdBuMa_ResaddBuMa": {
  1954. "type": "object",
  1955. "properties": {
  1956. "order10Back": {
  1957. "type": "object"
  1958. }
  1959. },
  1960. "required": [
  1961. "order10Back"
  1962. ]
  1963. },
  1964. "admin_PtladdCode_ReqaddCode": {
  1965. "type": "object",
  1966. "properties": {
  1967. "param": {
  1968. "type": "object"
  1969. }
  1970. },
  1971. "required": [
  1972. "param"
  1973. ]
  1974. },
  1975. "admin_PtladdCode_ResaddCode": {
  1976. "type": "object",
  1977. "properties": {
  1978. "order10Back": {
  1979. "type": "object"
  1980. }
  1981. },
  1982. "required": [
  1983. "order10Back"
  1984. ]
  1985. },
  1986. "admin_PtladdMail_ReqaddMail": {
  1987. "type": "object",
  1988. "properties": {
  1989. "params": {
  1990. "type": "object"
  1991. }
  1992. },
  1993. "required": [
  1994. "params"
  1995. ]
  1996. },
  1997. "admin_PtladdMail_ResaddMail": {
  1998. "type": "object",
  1999. "properties": {
  2000. "order10Back": {
  2001. "type": "object"
  2002. }
  2003. },
  2004. "required": [
  2005. "order10Back"
  2006. ]
  2007. },
  2008. "admin_PtlcacheVer_ReqcacheVer": {
  2009. "type": "object",
  2010. "properties": {}
  2011. },
  2012. "admin_PtlcacheVer_RescacheVer": {
  2013. "type": "object",
  2014. "properties": {
  2015. "order10Back": {
  2016. "type": "object"
  2017. }
  2018. },
  2019. "required": [
  2020. "order10Back"
  2021. ]
  2022. },
  2023. "admin_PtldeleteCode_ReqdeleteCode": {
  2024. "type": "object",
  2025. "properties": {
  2026. "id": {
  2027. "type": "string"
  2028. }
  2029. },
  2030. "required": [
  2031. "id"
  2032. ]
  2033. },
  2034. "admin_PtldeleteCode_ResdeleteCode": {
  2035. "type": "object",
  2036. "properties": {
  2037. "order10Back": {
  2038. "type": "object"
  2039. }
  2040. },
  2041. "required": [
  2042. "order10Back"
  2043. ]
  2044. },
  2045. "admin_PtldeleteMail_ReqdeleteMail": {
  2046. "type": "object",
  2047. "properties": {
  2048. "id": {
  2049. "type": "string"
  2050. }
  2051. },
  2052. "required": [
  2053. "id"
  2054. ]
  2055. },
  2056. "admin_PtldeleteMail_ResdeleteMail": {
  2057. "type": "object",
  2058. "properties": {
  2059. "order10Back": {
  2060. "type": "object"
  2061. }
  2062. },
  2063. "required": [
  2064. "order10Back"
  2065. ]
  2066. },
  2067. "admin_PtldeleteQuFu_ReqdeleteQuFu": {
  2068. "type": "object",
  2069. "properties": {
  2070. "sid": {
  2071. "type": "string"
  2072. }
  2073. },
  2074. "required": [
  2075. "sid"
  2076. ]
  2077. },
  2078. "admin_PtldeleteQuFu_ResdeleteQuFu": {
  2079. "type": "object",
  2080. "properties": {
  2081. "order10Back": {
  2082. "type": "object"
  2083. }
  2084. },
  2085. "required": [
  2086. "order10Back"
  2087. ]
  2088. },
  2089. "admin_PtldeleteSetting_ReqdeleteSetting": {
  2090. "type": "object",
  2091. "properties": {
  2092. "key": {
  2093. "type": "string"
  2094. }
  2095. },
  2096. "required": [
  2097. "key"
  2098. ]
  2099. },
  2100. "admin_PtldeleteSetting_ResdeleteSetting": {
  2101. "type": "object",
  2102. "properties": {
  2103. "order10Back": {
  2104. "type": "object"
  2105. }
  2106. },
  2107. "required": [
  2108. "order10Back"
  2109. ]
  2110. },
  2111. "admin_PtlgetCode_ReqgetCode": {
  2112. "type": "object",
  2113. "properties": {}
  2114. },
  2115. "admin_PtlgetCode_ResgetCode": {
  2116. "type": "object",
  2117. "properties": {
  2118. "order10Back": {
  2119. "type": "object"
  2120. }
  2121. },
  2122. "required": [
  2123. "order10Back"
  2124. ]
  2125. },
  2126. "admin_PtlgetCodeMa_ReqgetCodeMa": {
  2127. "type": "object",
  2128. "properties": {
  2129. "id": {
  2130. "type": "string"
  2131. }
  2132. },
  2133. "required": [
  2134. "id"
  2135. ]
  2136. },
  2137. "admin_PtlgetCodeMa_ResgetCodeMa": {
  2138. "type": "object",
  2139. "properties": {
  2140. "order10Back": {
  2141. "type": "object"
  2142. }
  2143. },
  2144. "required": [
  2145. "order10Back"
  2146. ]
  2147. },
  2148. "admin_PtlgetMail_ReqgetMail": {
  2149. "type": "object",
  2150. "properties": {}
  2151. },
  2152. "admin_PtlgetMail_ResgetMail": {
  2153. "type": "object",
  2154. "properties": {
  2155. "order10Back": {
  2156. "type": "object"
  2157. }
  2158. },
  2159. "required": [
  2160. "order10Back"
  2161. ]
  2162. },
  2163. "admin_PtlgetNeed_ReqgetNeed": {
  2164. "type": "object",
  2165. "properties": {
  2166. "stime": {
  2167. "type": "number"
  2168. },
  2169. "timeInterval": {
  2170. "type": "number"
  2171. }
  2172. },
  2173. "required": [
  2174. "stime",
  2175. "timeInterval"
  2176. ]
  2177. },
  2178. "admin_PtlgetNeed_ResgetNeed": {
  2179. "type": "object",
  2180. "properties": {
  2181. "order10Back": {
  2182. "type": "object"
  2183. }
  2184. },
  2185. "required": [
  2186. "order10Back"
  2187. ]
  2188. },
  2189. "admin_PtlgetQuFu_ReqgetQuFu": {
  2190. "type": "object",
  2191. "properties": {}
  2192. },
  2193. "admin_PtlgetQuFu_ResgetQuFu": {
  2194. "type": "object",
  2195. "properties": {
  2196. "order10Back": {
  2197. "type": "object"
  2198. }
  2199. },
  2200. "required": [
  2201. "order10Back"
  2202. ]
  2203. },
  2204. "admin_PtlgetSetting_ReqgetSetting": {
  2205. "type": "object",
  2206. "properties": {}
  2207. },
  2208. "admin_PtlgetSetting_ResgetSetting": {
  2209. "type": "object",
  2210. "properties": {
  2211. "order10Back": {
  2212. "type": "object"
  2213. }
  2214. },
  2215. "required": [
  2216. "order10Back"
  2217. ]
  2218. },
  2219. "admin_PtlgetVer_ReqgetVer": {
  2220. "type": "object",
  2221. "properties": {}
  2222. },
  2223. "admin_PtlgetVer_ResgetVer": {
  2224. "type": "object",
  2225. "properties": {
  2226. "order10Back": {
  2227. "type": "object"
  2228. }
  2229. },
  2230. "required": [
  2231. "order10Back"
  2232. ]
  2233. },
  2234. "admin_PtlhuodongAdd_ReqhuodongAdd": {
  2235. "type": "object",
  2236. "properties": {
  2237. "params": {
  2238. "type": "object"
  2239. }
  2240. },
  2241. "required": [
  2242. "params"
  2243. ]
  2244. },
  2245. "admin_PtlhuodongAdd_ReshuodongAdd": {
  2246. "type": "object",
  2247. "properties": {
  2248. "order10Back": {
  2249. "type": "object"
  2250. }
  2251. },
  2252. "required": [
  2253. "order10Back"
  2254. ]
  2255. },
  2256. "admin_PtlhuodongDelete_ReqhuodongDelete": {
  2257. "type": "object",
  2258. "properties": {
  2259. "id": {
  2260. "type": "string"
  2261. }
  2262. },
  2263. "required": [
  2264. "id"
  2265. ]
  2266. },
  2267. "admin_PtlhuodongDelete_ReshuodongDelete": {
  2268. "type": "object",
  2269. "properties": {
  2270. "order10Back": {
  2271. "type": "object"
  2272. }
  2273. },
  2274. "required": [
  2275. "order10Back"
  2276. ]
  2277. },
  2278. "admin_PtlhuodongEdit_ReqhuodongEdit": {
  2279. "type": "object",
  2280. "properties": {
  2281. "id": {
  2282. "type": "string"
  2283. },
  2284. "params": {
  2285. "type": "object"
  2286. }
  2287. },
  2288. "required": [
  2289. "id",
  2290. "params"
  2291. ]
  2292. },
  2293. "admin_PtlhuodongEdit_ReshuodongEdit": {
  2294. "type": "object",
  2295. "properties": {
  2296. "order10Back": {
  2297. "type": "object"
  2298. }
  2299. },
  2300. "required": [
  2301. "order10Back"
  2302. ]
  2303. },
  2304. "admin_PtlhuodongFind_ReqhuodongFind": {
  2305. "type": "object",
  2306. "properties": {
  2307. "key": {
  2308. "type": "string"
  2309. },
  2310. "hdcid": {
  2311. "type": "string"
  2312. }
  2313. }
  2314. },
  2315. "admin_PtlhuodongFind_ReshuodongFind": {
  2316. "type": "object",
  2317. "properties": {
  2318. "order10Back": {
  2319. "type": "object"
  2320. }
  2321. },
  2322. "required": [
  2323. "order10Back"
  2324. ]
  2325. },
  2326. "admin_PtlupdateMail_RequpdateMail": {
  2327. "type": "object",
  2328. "properties": {
  2329. "id": {
  2330. "type": "string"
  2331. },
  2332. "params": {
  2333. "type": "object"
  2334. }
  2335. },
  2336. "required": [
  2337. "id",
  2338. "params"
  2339. ]
  2340. },
  2341. "admin_PtlupdateMail_ResupdateMail": {
  2342. "type": "object",
  2343. "properties": {
  2344. "order10Back": {
  2345. "type": "object"
  2346. }
  2347. },
  2348. "required": [
  2349. "order10Back"
  2350. ]
  2351. },
  2352. "admin_PtlupdateQuFu_RequpdateQuFu": {
  2353. "type": "object",
  2354. "properties": {
  2355. "sid": {
  2356. "type": "string"
  2357. },
  2358. "param": {
  2359. "type": "object",
  2360. "properties": {},
  2361. "additionalProperties": {
  2362. "type": "object"
  2363. }
  2364. }
  2365. },
  2366. "required": [
  2367. "sid",
  2368. "param"
  2369. ]
  2370. },
  2371. "admin_PtlupdateQuFu_ResupdateQuFu": {
  2372. "type": "object",
  2373. "properties": {
  2374. "order10Back": {
  2375. "type": "object"
  2376. }
  2377. },
  2378. "required": [
  2379. "order10Back"
  2380. ]
  2381. },
  2382. "admin_PtlupdateSetting_RequpdateSetting": {
  2383. "type": "object",
  2384. "properties": {
  2385. "key": {
  2386. "type": "string"
  2387. },
  2388. "param": {
  2389. "type": "object"
  2390. }
  2391. },
  2392. "required": [
  2393. "key",
  2394. "param"
  2395. ]
  2396. },
  2397. "admin_PtlupdateSetting_ResupdateSetting": {
  2398. "type": "object",
  2399. "properties": {
  2400. "order10Back": {
  2401. "type": "object"
  2402. }
  2403. },
  2404. "required": [
  2405. "order10Back"
  2406. ]
  2407. },
  2408. "admin_Ptlxiazai_Reqxiazai": {
  2409. "type": "object",
  2410. "properties": {
  2411. "id": {
  2412. "type": "string"
  2413. }
  2414. },
  2415. "required": [
  2416. "id"
  2417. ]
  2418. },
  2419. "admin_Ptlxiazai_Resxiazai": {
  2420. "type": "object",
  2421. "properties": {
  2422. "order10Back": {
  2423. "type": "object"
  2424. }
  2425. },
  2426. "required": [
  2427. "order10Back"
  2428. ]
  2429. },
  2430. "common_MsgItems_MsgItems": {
  2431. "type": "object",
  2432. "properties": {
  2433. "items": {
  2434. "type": "array",
  2435. "items": {
  2436. "type": "number"
  2437. }
  2438. }
  2439. },
  2440. "required": [
  2441. "items"
  2442. ],
  2443. "description": "道具变化"
  2444. },
  2445. "common_MsgMessage_MsgMessage": {
  2446. "type": "object",
  2447. "properties": {
  2448. "message": {
  2449. "type": "string"
  2450. }
  2451. },
  2452. "required": [
  2453. "message"
  2454. ],
  2455. "description": "信息推送"
  2456. },
  2457. "eps_PtlEpsInfo_ReqEpsInfo": {
  2458. "type": "object",
  2459. "properties": {},
  2460. "description": "获取属性信息"
  2461. },
  2462. "eps_PtlEpsInfo_ResEpsInfo": {
  2463. "type": "object",
  2464. "properties": {},
  2465. "additionalProperties": {
  2466. "type": "number"
  2467. },
  2468. "description": "返回属性信息"
  2469. },
  2470. "eps_server_MsgEpsChange_s_MsgEpsChange_s": {
  2471. "type": "object",
  2472. "properties": {},
  2473. "additionalProperties": {
  2474. "type": "number"
  2475. },
  2476. "description": "属性变化"
  2477. },
  2478. "hc_PtlHcInfo_ReqHcInfo": {
  2479. "type": "object",
  2480. "properties": {},
  2481. "description": "获取合成信息"
  2482. },
  2483. "hc_PtlHcInfo_ResHcInfo": {
  2484. "type": "object",
  2485. "properties": {
  2486. "chapterId": {
  2487. "type": "number"
  2488. },
  2489. "tili": {
  2490. "type": "number"
  2491. },
  2492. "lastTime": {
  2493. "type": "number"
  2494. },
  2495. "list": {
  2496. "$ref": "#/components/schemas/hc_PtlHcInfo_HcInfoList"
  2497. }
  2498. },
  2499. "required": [
  2500. "chapterId",
  2501. "tili",
  2502. "lastTime",
  2503. "list"
  2504. ],
  2505. "description": "返回合成信息"
  2506. },
  2507. "hc_PtlHcInfo_HcInfoList": {
  2508. "type": "object",
  2509. "properties": {},
  2510. "additionalProperties": {
  2511. "$ref": "#/components/schemas/hc_PtlHcInfo_HcInfoGeziInfo"
  2512. }
  2513. },
  2514. "hc_PtlHcInfo_HcInfoGeziInfo": {
  2515. "type": "object",
  2516. "properties": {
  2517. "type": {
  2518. "$ref": "#/components/schemas/hc_PtlHcInfo_HcType"
  2519. },
  2520. "unlock": {
  2521. "$ref": "#/components/schemas/hc_PtlHcInfo_HcUnlock"
  2522. },
  2523. "correlationId": {
  2524. "type": "number"
  2525. }
  2526. },
  2527. "required": [
  2528. "type",
  2529. "unlock",
  2530. "correlationId"
  2531. ]
  2532. },
  2533. "hc_PtlHcInfo_HcType": {
  2534. "type": "number",
  2535. "enum": [
  2536. 0,
  2537. 2,
  2538. 3,
  2539. 50,
  2540. 4
  2541. ]
  2542. },
  2543. "hc_PtlHcInfo_HcUnlock": {
  2544. "type": "number",
  2545. "enum": [
  2546. 0,
  2547. 1
  2548. ]
  2549. },
  2550. "hc_PtlHcMerge_ReqHcMerge": {
  2551. "type": "object",
  2552. "properties": {
  2553. "gzid1": {
  2554. "type": "string"
  2555. },
  2556. "gzid2": {
  2557. "type": "string"
  2558. }
  2559. },
  2560. "required": [
  2561. "gzid1",
  2562. "gzid2"
  2563. ],
  2564. "description": "点击两个格子合成"
  2565. },
  2566. "hc_PtlHcMerge_ResHcMerge": {
  2567. "type": "object",
  2568. "properties": {},
  2569. "additionalProperties": {
  2570. "$ref": "#/components/schemas/hc_PtlHcInfo_HcInfoGeziInfo"
  2571. },
  2572. "description": "返回合成信息"
  2573. },
  2574. "item_PtlItemInfo_ReqItemInfo": {
  2575. "type": "object",
  2576. "properties": {},
  2577. "description": "获取道具信息"
  2578. },
  2579. "item_PtlItemInfo_ResItemInfo": {
  2580. "type": "object",
  2581. "properties": {},
  2582. "additionalProperties": {
  2583. "type": "number"
  2584. },
  2585. "description": "返回道具信息"
  2586. },
  2587. "item_server_MsgItemChange_s_MsgItemChange_s": {
  2588. "type": "object",
  2589. "properties": {},
  2590. "additionalProperties": {
  2591. "type": "number"
  2592. },
  2593. "description": "后端推送道具变化信息"
  2594. },
  2595. "mail_PtlMailDelAll_ReqMailDelAll": {
  2596. "type": "object",
  2597. "properties": {},
  2598. "description": "请求接口"
  2599. },
  2600. "mail_PtlMailDelAll_ResMailDelAll": {
  2601. "type": "object",
  2602. "properties": {},
  2603. "additionalProperties": {
  2604. "type": "object",
  2605. "properties": {
  2606. "ets": {
  2607. "type": "number"
  2608. }
  2609. },
  2610. "required": [
  2611. "ets"
  2612. ]
  2613. },
  2614. "description": "返回信息"
  2615. },
  2616. "mail_PtlMailDelOne_ReqMailDelOne": {
  2617. "type": "object",
  2618. "properties": {
  2619. "id": {
  2620. "type": "string"
  2621. }
  2622. },
  2623. "required": [
  2624. "id"
  2625. ],
  2626. "description": "请求接口"
  2627. },
  2628. "mail_PtlMailDelOne_ResMailDelOne": {
  2629. "type": "object",
  2630. "properties": {},
  2631. "additionalProperties": {
  2632. "type": "object",
  2633. "properties": {
  2634. "ets": {
  2635. "type": "number"
  2636. }
  2637. },
  2638. "required": [
  2639. "ets"
  2640. ]
  2641. },
  2642. "description": "返回信息"
  2643. },
  2644. "mail_PtlMailInfo_ReqMailInfo": {
  2645. "type": "object",
  2646. "properties": {},
  2647. "description": "请求邮件信息"
  2648. },
  2649. "mail_PtlMailInfo_ResMailInfo": {
  2650. "type": "object",
  2651. "properties": {},
  2652. "additionalProperties": {
  2653. "$ref": "#/components/schemas/mail_PtlMailInfo_MailInfo"
  2654. },
  2655. "description": "返回邮件信息列表"
  2656. },
  2657. "mail_PtlMailInfo_MailInfo": {
  2658. "type": "object",
  2659. "properties": {
  2660. "id": {
  2661. "type": "string"
  2662. },
  2663. "title": {
  2664. "type": "string"
  2665. },
  2666. "content": {
  2667. "type": "string"
  2668. },
  2669. "items": {
  2670. "type": "array",
  2671. "items": {
  2672. "type": "array",
  2673. "items": {
  2674. "type": "number"
  2675. }
  2676. }
  2677. },
  2678. "fts": {
  2679. "type": "number"
  2680. },
  2681. "rts": {
  2682. "type": "number"
  2683. },
  2684. "ets": {
  2685. "type": "number"
  2686. },
  2687. "dts": {
  2688. "type": "number"
  2689. }
  2690. },
  2691. "required": [
  2692. "id",
  2693. "title",
  2694. "content",
  2695. "items",
  2696. "fts",
  2697. "rts",
  2698. "ets",
  2699. "dts"
  2700. ]
  2701. },
  2702. "mail_PtlMailRwdAll_ReqMailRwdAll": {
  2703. "type": "object",
  2704. "properties": {},
  2705. "description": "请求接口"
  2706. },
  2707. "mail_PtlMailRwdAll_ResMailRwdAll": {
  2708. "type": "object",
  2709. "properties": {},
  2710. "additionalProperties": {
  2711. "type": "object",
  2712. "properties": {
  2713. "rts": {
  2714. "type": "number"
  2715. }
  2716. },
  2717. "required": [
  2718. "rts"
  2719. ]
  2720. },
  2721. "description": "返回信息"
  2722. },
  2723. "mail_PtlMailRwdOne_ReqMailRwdOne": {
  2724. "type": "object",
  2725. "properties": {
  2726. "id": {
  2727. "type": "string"
  2728. }
  2729. },
  2730. "required": [
  2731. "id"
  2732. ],
  2733. "description": "请求接口"
  2734. },
  2735. "mail_PtlMailRwdOne_ResMailRwdOne": {
  2736. "type": "object",
  2737. "properties": {},
  2738. "additionalProperties": {
  2739. "type": "object",
  2740. "properties": {
  2741. "rts": {
  2742. "type": "number"
  2743. }
  2744. },
  2745. "required": [
  2746. "rts"
  2747. ]
  2748. },
  2749. "description": "返回信息"
  2750. },
  2751. "mail_server_MsgMailNew_s_MsgMailNew_s": {
  2752. "type": "object",
  2753. "properties": {},
  2754. "additionalProperties": {
  2755. "$ref": "#/components/schemas/mail_PtlMailInfo_MailInfo"
  2756. }
  2757. },
  2758. "plat_PtlPlatLogin_ReqPlatLogin": {
  2759. "type": "object",
  2760. "properties": {
  2761. "pid": {
  2762. "type": "string"
  2763. },
  2764. "param": {
  2765. "type": "array",
  2766. "items": {
  2767. "type": "string"
  2768. }
  2769. }
  2770. },
  2771. "required": [
  2772. "pid",
  2773. "param"
  2774. ],
  2775. "description": "平台登录"
  2776. },
  2777. "plat_PtlPlatLogin_ResPlatLogin": {
  2778. "type": "object",
  2779. "properties": {
  2780. "openId": {
  2781. "type": "string"
  2782. },
  2783. "token": {
  2784. "type": "string"
  2785. },
  2786. "noticeWais": {
  2787. "type": "array",
  2788. "items": {
  2789. "$ref": "#/components/schemas/plat_PtlPlatLogin_Notices"
  2790. }
  2791. }
  2792. },
  2793. "required": [
  2794. "openId",
  2795. "token",
  2796. "noticeWais"
  2797. ],
  2798. "description": "返回平台登录信息"
  2799. },
  2800. "plat_PtlPlatLogin_Notices": {
  2801. "type": "object",
  2802. "properties": {
  2803. "type": {
  2804. "type": "number"
  2805. },
  2806. "title": {
  2807. "type": "string"
  2808. },
  2809. "content": {
  2810. "type": "string"
  2811. }
  2812. },
  2813. "required": [
  2814. "type",
  2815. "title",
  2816. "content"
  2817. ]
  2818. },
  2819. "player_PtlPlayerLogin_ReqPlayerLogin": {
  2820. "type": "object",
  2821. "properties": {
  2822. "pid": {
  2823. "type": "string"
  2824. },
  2825. "openId": {
  2826. "type": "string"
  2827. },
  2828. "lang": {
  2829. "type": "string"
  2830. },
  2831. "plat": {
  2832. "type": "string"
  2833. },
  2834. "device": {
  2835. "type": "string"
  2836. },
  2837. "parms": {
  2838. "type": "array",
  2839. "items": {
  2840. "type": "string"
  2841. }
  2842. }
  2843. },
  2844. "required": [
  2845. "pid",
  2846. "openId",
  2847. "lang",
  2848. "plat",
  2849. "device",
  2850. "parms"
  2851. ],
  2852. "description": "账号登录"
  2853. },
  2854. "player_PtlPlayerLogin_ResPlayerLogin": {
  2855. "type": "object",
  2856. "properties": {
  2857. "uid": {
  2858. "type": "string"
  2859. },
  2860. "sid": {
  2861. "type": "string"
  2862. },
  2863. "list": {
  2864. "type": "object",
  2865. "properties": {},
  2866. "additionalProperties": {
  2867. "$ref": "#/components/schemas/player_PtlPlayerLogin_ResLoginList"
  2868. }
  2869. },
  2870. "token": {
  2871. "type": "string"
  2872. },
  2873. "qufuList": {
  2874. "type": "object",
  2875. "properties": {},
  2876. "additionalProperties": {
  2877. "$ref": "#/components/schemas/player_PtlPlayerLogin_qufuInfo"
  2878. }
  2879. },
  2880. "switch": {
  2881. "type": "object",
  2882. "properties": {},
  2883. "additionalProperties": {
  2884. "type": "object"
  2885. }
  2886. },
  2887. "orderList": {
  2888. "type": "object",
  2889. "properties": {},
  2890. "additionalProperties": {
  2891. "$ref": "#/components/schemas/player_PtlPlayerLogin_OrderList"
  2892. }
  2893. },
  2894. "wsUrl": {
  2895. "type": "string"
  2896. }
  2897. },
  2898. "required": [
  2899. "uid",
  2900. "sid",
  2901. "list",
  2902. "token",
  2903. "qufuList",
  2904. "switch",
  2905. "orderList",
  2906. "wsUrl"
  2907. ],
  2908. "description": "返回账号登录信息"
  2909. },
  2910. "player_PtlPlayerLogin_ResLoginList": {
  2911. "type": "object",
  2912. "properties": {
  2913. "uuid": {
  2914. "type": "string"
  2915. },
  2916. "name": {
  2917. "type": "string"
  2918. },
  2919. "level": {
  2920. "type": "number"
  2921. },
  2922. "lastlogin": {
  2923. "type": "number"
  2924. }
  2925. },
  2926. "required": [
  2927. "uuid",
  2928. "name",
  2929. "level",
  2930. "lastlogin"
  2931. ],
  2932. "description": "账号下角色信息"
  2933. },
  2934. "player_PtlPlayerLogin_qufuInfo": {
  2935. "type": "object",
  2936. "properties": {
  2937. "sid": {
  2938. "type": "string"
  2939. },
  2940. "name": {
  2941. "type": "string"
  2942. },
  2943. "sName": {
  2944. "type": "string"
  2945. },
  2946. "openAt": {
  2947. "type": "number"
  2948. },
  2949. "status": {
  2950. "type": "string"
  2951. },
  2952. "heid": {
  2953. "type": "string"
  2954. },
  2955. "suofu": {
  2956. "type": "string"
  2957. },
  2958. "skin": {
  2959. "type": "string"
  2960. }
  2961. },
  2962. "required": [
  2963. "sid",
  2964. "name",
  2965. "sName",
  2966. "openAt",
  2967. "status",
  2968. "heid",
  2969. "suofu",
  2970. "skin"
  2971. ],
  2972. "description": "区服信息"
  2973. },
  2974. "player_PtlPlayerLogin_OrderList": {
  2975. "type": "object",
  2976. "properties": {
  2977. "rmb": {
  2978. "type": "number"
  2979. },
  2980. "money": {
  2981. "type": "number"
  2982. },
  2983. "desc": {
  2984. "type": "string"
  2985. },
  2986. "iid": {
  2987. "type": "string"
  2988. },
  2989. "daibi": {
  2990. "type": "number"
  2991. }
  2992. },
  2993. "required": [
  2994. "rmb",
  2995. "money",
  2996. "desc",
  2997. "iid",
  2998. "daibi"
  2999. ]
  3000. },
  3001. "task_PtlTaskInfo_ReqTaskInfo": {
  3002. "type": "object",
  3003. "properties": {},
  3004. "description": "获取主线任务"
  3005. },
  3006. "task_PtlTaskInfo_ResTaskInfo": {
  3007. "type": "object",
  3008. "properties": {
  3009. "id": {
  3010. "type": "number"
  3011. },
  3012. "cons": {
  3013. "type": "number"
  3014. }
  3015. },
  3016. "required": [
  3017. "id",
  3018. "cons"
  3019. ],
  3020. "description": "主线任务"
  3021. },
  3022. "task_PtlTaskRwd_ReqTaskRwd": {
  3023. "type": "object",
  3024. "properties": {},
  3025. "description": "请求领取任务奖励"
  3026. },
  3027. "task_PtlTaskRwd_ResTaskRwd": {
  3028. "type": "object",
  3029. "properties": {
  3030. "id": {
  3031. "type": "number"
  3032. },
  3033. "cons": {
  3034. "type": "number"
  3035. }
  3036. },
  3037. "required": [
  3038. "id",
  3039. "cons"
  3040. ],
  3041. "description": "领取任务奖励"
  3042. },
  3043. "task_server_MsgTaskCons_s_MsgTaskCons_s": {
  3044. "type": "object",
  3045. "properties": {
  3046. "cons": {
  3047. "type": "number"
  3048. }
  3049. },
  3050. "required": [
  3051. "cons"
  3052. ],
  3053. "description": "主线任务进度"
  3054. },
  3055. "user_PtlUserFight_ReqUserFight": {
  3056. "type": "object",
  3057. "properties": {},
  3058. "description": "战斗测试"
  3059. },
  3060. "user_PtlUserFight_ResUserFight": {
  3061. "type": "object",
  3062. "properties": {
  3063. "fightStart": {
  3064. "$ref": "#/components/schemas/user_PtlUserFight_FightStart"
  3065. },
  3066. "win": {
  3067. "type": "number"
  3068. },
  3069. "log": {
  3070. "type": "object",
  3071. "properties": {},
  3072. "additionalProperties": {
  3073. "type": "array",
  3074. "items": {
  3075. "$ref": "#/components/schemas/user_PtlUserFight_fightLogOne"
  3076. }
  3077. }
  3078. }
  3079. },
  3080. "required": [
  3081. "fightStart",
  3082. "win",
  3083. "log"
  3084. ],
  3085. "description": "返回战斗信息"
  3086. },
  3087. "user_PtlUserFight_FightStart": {
  3088. "type": "object",
  3089. "properties": {
  3090. "from": {
  3091. "type": "string"
  3092. },
  3093. "seed": {
  3094. "type": "number"
  3095. },
  3096. "teams": {
  3097. "type": "object",
  3098. "properties": {},
  3099. "additionalProperties": {
  3100. "$ref": "#/components/schemas/user_PtlUserFight_FightTeam"
  3101. }
  3102. }
  3103. },
  3104. "required": [
  3105. "from",
  3106. "seed",
  3107. "teams"
  3108. ],
  3109. "description": "战斗初始阵容"
  3110. },
  3111. "user_PtlUserFight_FightTeam": {
  3112. "type": "object",
  3113. "properties": {
  3114. "fid": {
  3115. "type": "string"
  3116. },
  3117. "seat": {
  3118. "type": "number"
  3119. },
  3120. "eps": {
  3121. "type": "object",
  3122. "properties": {},
  3123. "additionalProperties": {
  3124. "type": "number"
  3125. }
  3126. }
  3127. },
  3128. "required": [
  3129. "fid",
  3130. "seat",
  3131. "eps"
  3132. ],
  3133. "description": "单个阵容信息"
  3134. },
  3135. "user_PtlUserFight_fightLogOne": {
  3136. "type": "object",
  3137. "properties": {
  3138. "aType": {
  3139. "$ref": "#/components/schemas/user_PtlUserFight_ActionType"
  3140. },
  3141. "atker": {
  3142. "$ref": "#/components/schemas/user_PtlUserFight_fightLogOneData"
  3143. },
  3144. "target": {
  3145. "type": "array",
  3146. "items": {
  3147. "$ref": "#/components/schemas/user_PtlUserFight_fightLogOneData"
  3148. }
  3149. }
  3150. },
  3151. "required": [
  3152. "aType",
  3153. "atker",
  3154. "target"
  3155. ]
  3156. },
  3157. "user_PtlUserFight_ActionType": {
  3158. "type": "string",
  3159. "enum": [
  3160. "wu",
  3161. "0",
  3162. "1",
  3163. "2",
  3164. "3",
  3165. "999"
  3166. ],
  3167. "description": "战斗动作类型"
  3168. },
  3169. "user_PtlUserFight_fightLogOneData": {
  3170. "type": "object",
  3171. "properties": {
  3172. "iid": {
  3173. "type": "string"
  3174. },
  3175. "hp": {
  3176. "type": "number"
  3177. },
  3178. "buff": {
  3179. "type": "array",
  3180. "items": {
  3181. "type": "array",
  3182. "prefixItems": [
  3183. {
  3184. "type": "string"
  3185. },
  3186. {
  3187. "type": "number"
  3188. }
  3189. ]
  3190. }
  3191. },
  3192. "effect": {
  3193. "type": "array",
  3194. "items": {
  3195. "type": "array",
  3196. "prefixItems": [
  3197. {
  3198. "type": "string"
  3199. },
  3200. {
  3201. "type": "number"
  3202. }
  3203. ]
  3204. }
  3205. }
  3206. },
  3207. "required": [
  3208. "iid",
  3209. "hp",
  3210. "buff",
  3211. "effect"
  3212. ],
  3213. "description": "日志格式"
  3214. },
  3215. "user_PtlUserLogin_ReqUserLogin": {
  3216. "type": "object",
  3217. "properties": {
  3218. "sid": {
  3219. "type": "string"
  3220. },
  3221. "uid": {
  3222. "type": "string"
  3223. },
  3224. "token": {
  3225. "type": "string"
  3226. }
  3227. },
  3228. "required": [
  3229. "sid",
  3230. "uid",
  3231. "token"
  3232. ],
  3233. "description": "角色登录"
  3234. },
  3235. "user_PtlUserLogin_ResUserLogin": {
  3236. "type": "object",
  3237. "properties": {
  3238. "uuid": {
  3239. "type": "string"
  3240. },
  3241. "sid": {
  3242. "type": "string"
  3243. },
  3244. "name": {
  3245. "type": "string"
  3246. },
  3247. "head": {
  3248. "type": "string"
  3249. },
  3250. "wxhead": {
  3251. "type": "string"
  3252. },
  3253. "sex": {
  3254. "type": "number"
  3255. },
  3256. "level": {
  3257. "type": "number"
  3258. },
  3259. "exp": {
  3260. "type": "number"
  3261. },
  3262. "regtime": {
  3263. "type": "number"
  3264. },
  3265. "loginTime": {
  3266. "type": "number"
  3267. },
  3268. "lastlogin": {
  3269. "type": "number"
  3270. },
  3271. "lang": {
  3272. "type": "string"
  3273. },
  3274. "iscz": {
  3275. "type": "number"
  3276. },
  3277. "rmbcz": {
  3278. "type": "number"
  3279. },
  3280. "power": {
  3281. "type": "number"
  3282. }
  3283. },
  3284. "required": [
  3285. "uuid",
  3286. "sid",
  3287. "name",
  3288. "head",
  3289. "wxhead",
  3290. "sex",
  3291. "level",
  3292. "exp",
  3293. "regtime",
  3294. "loginTime",
  3295. "lastlogin",
  3296. "lang",
  3297. "iscz",
  3298. "rmbcz",
  3299. "power"
  3300. ],
  3301. "description": "返回角色信息"
  3302. },
  3303. "user_PtlUserNotices_ReqUserNotices": {
  3304. "type": "object",
  3305. "properties": {},
  3306. "description": "请求接口 获取内部公告"
  3307. },
  3308. "user_PtlUserNotices_ResUserNotices": {
  3309. "type": "object",
  3310. "properties": {
  3311. "notices": {
  3312. "type": "array",
  3313. "items": {
  3314. "$ref": "#/components/schemas/plat_PtlPlatLogin_Notices"
  3315. }
  3316. }
  3317. },
  3318. "required": [
  3319. "notices"
  3320. ],
  3321. "description": "返回信息"
  3322. },
  3323. "user_PtlUserSetName_ReqUserSetName": {
  3324. "type": "object",
  3325. "properties": {
  3326. "name": {
  3327. "type": "string"
  3328. }
  3329. },
  3330. "required": [
  3331. "name"
  3332. ],
  3333. "description": "角色改名"
  3334. },
  3335. "user_PtlUserSetName_ResUserSetName": {
  3336. "type": "object",
  3337. "properties": {
  3338. "name": {
  3339. "type": "string"
  3340. }
  3341. },
  3342. "required": [
  3343. "name"
  3344. ],
  3345. "description": "返回修改后的角色名字"
  3346. },
  3347. "user_PtlUserUseCode_ReqUserUseCode": {
  3348. "type": "object",
  3349. "properties": {
  3350. "key": {
  3351. "type": "string"
  3352. }
  3353. },
  3354. "required": [
  3355. "key"
  3356. ],
  3357. "description": "请求接口 使用兑换码"
  3358. },
  3359. "user_PtlUserUseCode_ResUserUseCode": {
  3360. "type": "object",
  3361. "properties": {},
  3362. "description": "返回信息"
  3363. },
  3364. "user_server_MsgUserUplevel_s_MsgUserUplevel_s": {
  3365. "type": "object",
  3366. "properties": {
  3367. "level": {
  3368. "type": "number"
  3369. },
  3370. "exp": {
  3371. "type": "number"
  3372. }
  3373. },
  3374. "required": [
  3375. "level",
  3376. "exp"
  3377. ],
  3378. "description": "升级"
  3379. },
  3380. "?bson_ObjectID": {
  3381. "type": "string"
  3382. },
  3383. "?bson_ObjectId": {
  3384. "type": "string"
  3385. },
  3386. "?mongodb_ObjectID": {
  3387. "type": "string"
  3388. },
  3389. "?mongodb_ObjectId": {
  3390. "type": "string"
  3391. }
  3392. },
  3393. "responses": {
  3394. "error": {
  3395. "description": "Error",
  3396. "content": {
  3397. "application/json": {
  3398. "schema": {
  3399. "type": "object",
  3400. "title": "API 错误",
  3401. "description": "业务错误(ApiError)返回 HTTP 状态码 200,其它错误返回 HTTP 状态码 500",
  3402. "properties": {
  3403. "isSucc": {
  3404. "type": "boolean",
  3405. "enum": [
  3406. false
  3407. ],
  3408. "default": false
  3409. },
  3410. "err": {
  3411. "type": "object",
  3412. "description": "TsrpcError",
  3413. "properties": {
  3414. "message": {
  3415. "type": "string"
  3416. },
  3417. "type": {
  3418. "type": "string",
  3419. "enum": [
  3420. "ApiError",
  3421. "NetworkError",
  3422. "ServerError",
  3423. "ClientError"
  3424. ]
  3425. },
  3426. "code": {
  3427. "oneOf": [
  3428. {
  3429. "type": "string"
  3430. },
  3431. {
  3432. "type": "integer"
  3433. }
  3434. ],
  3435. "nullable": true
  3436. }
  3437. },
  3438. "required": [
  3439. "message",
  3440. "type"
  3441. ]
  3442. }
  3443. }
  3444. }
  3445. }
  3446. }
  3447. }
  3448. }
  3449. }
  3450. }