swagger.json 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611
  1. {
  2. "swagger": "2.0",
  3. "info": {
  4. "title": "beego Test API",
  5. "description": "beego has a very cool tools to autogenerate documents for your API\n",
  6. "version": "1.0.0",
  7. "termsOfService": "http://beego.me/",
  8. "contact": {
  9. "email": "astaxie@gmail.com"
  10. },
  11. "license": {
  12. "name": "Apache 2.0",
  13. "url": "http://www.apache.org/licenses/LICENSE-2.0.html"
  14. }
  15. },
  16. "basePath": "/edbapi",
  17. "paths": {
  18. "/baiinfo/add": {
  19. "post": {
  20. "tags": [
  21. "baiinfo"
  22. ],
  23. "description": "新增Baiinfo指标接口\n\u003cbr\u003e",
  24. "operationId": "BaiinfoController.新增Baiinfo指标接口",
  25. "responses": {
  26. "200": {
  27. "description": "",
  28. "schema": {
  29. "$ref": "#/definitions/models.AddEdbInfoReq"
  30. }
  31. }
  32. }
  33. }
  34. },
  35. "/baiinfo/refresh": {
  36. "post": {
  37. "tags": [
  38. "baiinfo"
  39. ],
  40. "description": "刷新baiinfo指标接口\n\u003cbr\u003e",
  41. "operationId": "BaiinfoController.刷新baiinfo指标接口",
  42. "responses": {
  43. "200": {
  44. "description": "",
  45. "schema": {
  46. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  47. }
  48. }
  49. }
  50. }
  51. },
  52. "/calculate/add": {
  53. "post": {
  54. "tags": [
  55. "calculate"
  56. ],
  57. "description": "新增计算指标接口\n\u003cbr\u003e",
  58. "operationId": "CalculateController.新增计算指标接口",
  59. "responses": {
  60. "200": {
  61. "description": "",
  62. "schema": {
  63. "$ref": "#/definitions/models.EdbInfoCalculateSaveReq"
  64. }
  65. }
  66. }
  67. }
  68. },
  69. "/calculate/adjust/save": {
  70. "post": {
  71. "tags": [
  72. "calculate"
  73. ],
  74. "description": "保存数据调整指标接口\n\u003cbr\u003e",
  75. "operationId": "CalculateController.保存数据调整指标接口",
  76. "responses": {
  77. "200": {
  78. "description": "",
  79. "schema": {
  80. "$ref": "#/definitions/models.SaveAdjustEdbReq"
  81. }
  82. }
  83. }
  84. }
  85. },
  86. "/calculate/batch/edit": {
  87. "post": {
  88. "tags": [
  89. "calculate"
  90. ],
  91. "description": "累计值转月-同比值-同差等计算新增接口\n\u003cbr\u003e",
  92. "operationId": "CalculateController.累计值转月-同比值-同差等计算新增",
  93. "parameters": [
  94. {
  95. "in": "body",
  96. "name": "request",
  97. "description": "type json string",
  98. "required": true,
  99. "schema": {
  100. "$ref": "#/definitions/models.EdbInfoCalculateBatchSaveReq"
  101. }
  102. }
  103. ],
  104. "responses": {
  105. "Ret=200": {
  106. "description": "返回指标id"
  107. }
  108. }
  109. }
  110. },
  111. "/calculate/batch/save": {
  112. "post": {
  113. "tags": [
  114. "calculate"
  115. ],
  116. "description": "累计值转月-同比值-同差等计算新增接口\n\u003cbr\u003e",
  117. "operationId": "CalculateController.累计值转月-同比值-同差等计算新增",
  118. "parameters": [
  119. {
  120. "in": "body",
  121. "name": "request",
  122. "description": "type json string",
  123. "required": true,
  124. "schema": {
  125. "$ref": "#/definitions/models.EdbInfoCalculateBatchSaveReq"
  126. }
  127. }
  128. ],
  129. "responses": {
  130. "Ret=200": {
  131. "description": "返回指标id"
  132. }
  133. }
  134. }
  135. },
  136. "/calculate/edit": {
  137. "post": {
  138. "tags": [
  139. "calculate"
  140. ],
  141. "description": "编辑计算指标接口\n\u003cbr\u003e",
  142. "operationId": "CalculateController.编辑计算指标接口",
  143. "responses": {
  144. "200": {
  145. "description": "",
  146. "schema": {
  147. "$ref": "#/definitions/models.EdbInfoCalculateSaveReq"
  148. }
  149. }
  150. }
  151. }
  152. },
  153. "/calculate/refresh": {
  154. "post": {
  155. "tags": [
  156. "calculate"
  157. ],
  158. "description": "刷新计算指标接口\n\u003cbr\u003e",
  159. "operationId": "CalculateController.刷新计算指标接口",
  160. "responses": {
  161. "200": {
  162. "description": "",
  163. "schema": {
  164. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  165. }
  166. }
  167. }
  168. }
  169. },
  170. "/cffex/add": {
  171. "post": {
  172. "tags": [
  173. "cffex"
  174. ],
  175. "description": "新增中金所指标接口\n\u003cbr\u003e",
  176. "operationId": "CffexController.新增中金所指标接口",
  177. "responses": {
  178. "200": {
  179. "description": "",
  180. "schema": {
  181. "$ref": "#/definitions/models.AddEdbInfoReq"
  182. }
  183. }
  184. }
  185. }
  186. },
  187. "/cffex/refresh": {
  188. "post": {
  189. "tags": [
  190. "cffex"
  191. ],
  192. "description": "刷新中金所指标接口\n\u003cbr\u003e",
  193. "operationId": "CffexController.刷新中金所指标接口",
  194. "responses": {
  195. "200": {
  196. "description": "",
  197. "schema": {
  198. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  199. }
  200. }
  201. }
  202. }
  203. },
  204. "/coal/add": {
  205. "post": {
  206. "tags": [
  207. "coal"
  208. ],
  209. "description": "新增煤炭网指标接口\n\u003cbr\u003e",
  210. "operationId": "CoalController.新增煤炭网指标接口",
  211. "responses": {
  212. "200": {
  213. "description": "",
  214. "schema": {
  215. "$ref": "#/definitions/models.AddEdbInfoReq"
  216. }
  217. }
  218. }
  219. }
  220. },
  221. "/coal/refresh": {
  222. "post": {
  223. "tags": [
  224. "coal"
  225. ],
  226. "description": "刷新中国煤炭网指标接口\n\u003cbr\u003e",
  227. "operationId": "CoalController.刷新中国煤炭网指标接口",
  228. "responses": {
  229. "200": {
  230. "description": "",
  231. "schema": {
  232. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  233. }
  234. }
  235. }
  236. }
  237. },
  238. "/com_trade/add": {
  239. "post": {
  240. "tags": [
  241. "com_trade"
  242. ],
  243. "description": "新增Eia Steo指标接口\n\u003cbr\u003e",
  244. "operationId": "ComTradeController.新增Eia Steo指标接口",
  245. "responses": {
  246. "200": {
  247. "description": "",
  248. "schema": {
  249. "$ref": "#/definitions/models.AddEdbInfoReq"
  250. }
  251. }
  252. }
  253. }
  254. },
  255. "/com_trade/refresh": {
  256. "post": {
  257. "tags": [
  258. "com_trade"
  259. ],
  260. "description": "刷新Eia Steo指标接口\n\u003cbr\u003e",
  261. "operationId": "ComTradeController.刷新Eia Steo指标接口",
  262. "responses": {
  263. "200": {
  264. "description": "",
  265. "schema": {
  266. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  267. }
  268. }
  269. }
  270. }
  271. },
  272. "/dl/add": {
  273. "post": {
  274. "tags": [
  275. "dl"
  276. ],
  277. "description": "新增大商所指标接口\n\u003cbr\u003e",
  278. "operationId": "DlController.新增大商所指标接口",
  279. "responses": {
  280. "200": {
  281. "description": "",
  282. "schema": {
  283. "$ref": "#/definitions/models.AddEdbInfoReq"
  284. }
  285. }
  286. }
  287. }
  288. },
  289. "/dl/refresh": {
  290. "post": {
  291. "tags": [
  292. "dl"
  293. ],
  294. "description": "刷新大商所指标接口\n\u003cbr\u003e",
  295. "operationId": "DlController.刷新大商所指标接口",
  296. "responses": {
  297. "200": {
  298. "description": "",
  299. "schema": {
  300. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  301. }
  302. }
  303. }
  304. }
  305. },
  306. "/eia_steo/add": {
  307. "post": {
  308. "tags": [
  309. "eia_steo"
  310. ],
  311. "description": "新增Eia Steo指标接口\n\u003cbr\u003e",
  312. "operationId": "EiaSteoController.新增Eia Steo指标接口",
  313. "responses": {
  314. "200": {
  315. "description": "",
  316. "schema": {
  317. "$ref": "#/definitions/models.AddEdbInfoReq"
  318. }
  319. }
  320. }
  321. }
  322. },
  323. "/eia_steo/refresh": {
  324. "post": {
  325. "tags": [
  326. "eia_steo"
  327. ],
  328. "description": "刷新Eia Steo指标接口\n\u003cbr\u003e",
  329. "operationId": "EiaSteoController.刷新Eia Steo指标接口",
  330. "responses": {
  331. "200": {
  332. "description": "",
  333. "schema": {
  334. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  335. }
  336. }
  337. }
  338. }
  339. },
  340. "/fubao/add": {
  341. "post": {
  342. "tags": [
  343. "fubao"
  344. ],
  345. "description": "新增富宝指标接口\n\u003cbr\u003e",
  346. "operationId": "FuBaoController.新增富宝指标接口",
  347. "responses": {
  348. "200": {
  349. "description": "",
  350. "schema": {
  351. "$ref": "#/definitions/models.AddEdbInfoReq"
  352. }
  353. }
  354. }
  355. }
  356. },
  357. "/fubao/refresh": {
  358. "post": {
  359. "tags": [
  360. "fubao"
  361. ],
  362. "description": "刷新路透社指标接口\n\u003cbr\u003e",
  363. "operationId": "FuBaoController.刷新富宝指标接口",
  364. "responses": {
  365. "200": {
  366. "description": "",
  367. "schema": {
  368. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  369. }
  370. }
  371. }
  372. }
  373. },
  374. "/future_good/add": {
  375. "post": {
  376. "tags": [
  377. "future_good"
  378. ],
  379. "description": "新增wind指标接口\n\u003cbr\u003e",
  380. "operationId": "FutureGoodEdbInfoController.新增wind商品指标接口",
  381. "responses": {
  382. "200": {
  383. "description": "",
  384. "schema": {
  385. "$ref": "#/definitions/models.AddEdbInfoReq"
  386. }
  387. }
  388. }
  389. }
  390. },
  391. "/future_good/refresh": {
  392. "post": {
  393. "tags": [
  394. "future_good"
  395. ],
  396. "description": "刷新wind指标接口\n\u003cbr\u003e",
  397. "operationId": "FutureGoodEdbInfoController.刷新wind期货数据指标接口",
  398. "responses": {
  399. "200": {
  400. "description": "",
  401. "schema": {
  402. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  403. }
  404. }
  405. }
  406. }
  407. },
  408. "/future_good/relation/refresh": {
  409. "post": {
  410. "tags": [
  411. "future_good"
  412. ],
  413. "description": "刷新商品期货指标相关的接口\n\u003cbr\u003e",
  414. "operationId": "FutureGoodEdbInfoController.刷新商品期货指标相关的接口",
  415. "responses": {
  416. "200": {
  417. "description": "",
  418. "schema": {
  419. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  420. }
  421. }
  422. }
  423. }
  424. },
  425. "/gie/add": {
  426. "post": {
  427. "tags": [
  428. "gie"
  429. ],
  430. "description": "新增欧洲天然气指标接口\n\u003cbr\u003e",
  431. "operationId": "GieController.新增欧洲天然气指标接口",
  432. "responses": {
  433. "200": {
  434. "description": "",
  435. "schema": {
  436. "$ref": "#/definitions/models.AddEdbInfoReq"
  437. }
  438. }
  439. }
  440. }
  441. },
  442. "/gie/refresh": {
  443. "post": {
  444. "tags": [
  445. "gie"
  446. ],
  447. "description": "刷新欧洲天然气指标接口\n\u003cbr\u003e",
  448. "operationId": "GieController.刷新欧洲天然气指标接口",
  449. "responses": {
  450. "200": {
  451. "description": "",
  452. "schema": {
  453. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  454. }
  455. }
  456. }
  457. }
  458. },
  459. "/google_travel/add": {
  460. "post": {
  461. "tags": [
  462. "google_travel"
  463. ],
  464. "description": "新增谷歌出行数据接口\n\u003cbr\u003e",
  465. "operationId": "GoogleTravelController.新增谷歌出行数据接口",
  466. "responses": {
  467. "200": {
  468. "description": "",
  469. "schema": {
  470. "$ref": "#/definitions/models.AddEdbInfoReq"
  471. }
  472. }
  473. }
  474. }
  475. },
  476. "/google_travel/refresh": {
  477. "post": {
  478. "tags": [
  479. "google_travel"
  480. ],
  481. "description": "刷新谷歌出行指标接口\n\u003cbr\u003e",
  482. "operationId": "GoogleTravelController.刷新谷歌出行指标接口",
  483. "responses": {
  484. "200": {
  485. "description": "",
  486. "schema": {
  487. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  488. }
  489. }
  490. }
  491. }
  492. },
  493. "/lt/add": {
  494. "post": {
  495. "tags": [
  496. "lt"
  497. ],
  498. "description": "新增路透指标接口\n\u003cbr\u003e",
  499. "operationId": "LtController.新增路透指标接口",
  500. "responses": {
  501. "200": {
  502. "description": "",
  503. "schema": {
  504. "$ref": "#/definitions/models.AddEdbInfoReq"
  505. }
  506. }
  507. }
  508. }
  509. },
  510. "/lt/refresh": {
  511. "post": {
  512. "tags": [
  513. "lt"
  514. ],
  515. "description": "刷新路透社指标接口\n\u003cbr\u003e",
  516. "operationId": "LtController.刷新路透社指标接口",
  517. "responses": {
  518. "200": {
  519. "description": "",
  520. "schema": {
  521. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  522. }
  523. }
  524. }
  525. }
  526. },
  527. "/lz/add": {
  528. "post": {
  529. "tags": [
  530. "lz"
  531. ],
  532. "description": "新增隆众指标接口\n\u003cbr\u003e",
  533. "operationId": "LzController.新增隆众指标接口",
  534. "responses": {
  535. "200": {
  536. "description": "",
  537. "schema": {
  538. "$ref": "#/definitions/models.AddEdbInfoReq"
  539. }
  540. }
  541. }
  542. }
  543. },
  544. "/lz/refresh": {
  545. "post": {
  546. "tags": [
  547. "lz"
  548. ],
  549. "description": "刷新隆众指标接口\n\u003cbr\u003e",
  550. "operationId": "LzController.刷新隆众指标接口",
  551. "responses": {
  552. "200": {
  553. "description": "",
  554. "schema": {
  555. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  556. }
  557. }
  558. }
  559. }
  560. },
  561. "/manual/add": {
  562. "post": {
  563. "tags": [
  564. "manual"
  565. ],
  566. "description": "新增手工指标接口\n\u003cbr\u003e",
  567. "operationId": "ManualController.新增手工指标接口",
  568. "responses": {
  569. "200": {
  570. "description": "",
  571. "schema": {
  572. "$ref": "#/definitions/models.AddEdbInfoReq"
  573. }
  574. }
  575. }
  576. }
  577. },
  578. "/manual/refresh": {
  579. "post": {
  580. "tags": [
  581. "manual"
  582. ],
  583. "description": "刷新手工指标接口\n\u003cbr\u003e",
  584. "operationId": "ManualController.刷新手工指标接口",
  585. "responses": {
  586. "200": {
  587. "description": "",
  588. "schema": {
  589. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  590. }
  591. }
  592. }
  593. }
  594. },
  595. "/mysteel/add": {
  596. "post": {
  597. "tags": [
  598. "mysteel"
  599. ],
  600. "description": "新增钢联指标接口\n\u003cbr\u003e",
  601. "operationId": "MySteelController.新增钢联指标接口",
  602. "responses": {
  603. "200": {
  604. "description": "",
  605. "schema": {
  606. "$ref": "#/definitions/models.AddEdbInfoReq"
  607. }
  608. }
  609. }
  610. }
  611. },
  612. "/mysteel/query/refresh": {
  613. "get": {
  614. "tags": [
  615. "mysteel"
  616. ],
  617. "description": "查询刷新指标的接口\n\u003cbr\u003e",
  618. "operationId": "MySteelController.查询刷新指标的接口",
  619. "responses": {
  620. "200": {
  621. "description": "",
  622. "schema": {
  623. "$ref": "#/definitions/models.CheckDeleteClassifyResp"
  624. }
  625. }
  626. }
  627. }
  628. },
  629. "/mysteel/refresh": {
  630. "post": {
  631. "tags": [
  632. "mysteel"
  633. ],
  634. "description": "刷新钢联指标接口\n\u003cbr\u003e",
  635. "operationId": "MySteelController.刷新钢联指标接口",
  636. "responses": {
  637. "200": {
  638. "description": "",
  639. "schema": {
  640. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  641. }
  642. }
  643. }
  644. }
  645. },
  646. "/mysteel_chemical/add": {
  647. "post": {
  648. "tags": [
  649. "mysteel_chemical"
  650. ],
  651. "description": "新增钢联化工指标接口\n\u003cbr\u003e",
  652. "operationId": "MySteelChemicalController.新增钢联化工指标接口",
  653. "responses": {
  654. "200": {
  655. "description": "",
  656. "schema": {
  657. "$ref": "#/definitions/models.AddEdbInfoReq"
  658. }
  659. }
  660. }
  661. }
  662. },
  663. "/mysteel_chemical/refresh": {
  664. "post": {
  665. "tags": [
  666. "mysteel_chemical"
  667. ],
  668. "description": "刷新钢联化工指标接口\n\u003cbr\u003e",
  669. "operationId": "MySteelChemicalController.刷新钢联化工指标接口",
  670. "responses": {
  671. "200": {
  672. "description": "",
  673. "schema": {
  674. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  675. }
  676. }
  677. }
  678. }
  679. },
  680. "/national_statistics/add": {
  681. "post": {
  682. "tags": [
  683. "national_statistics"
  684. ],
  685. "description": "新增指标\n\u003cbr\u003e",
  686. "operationId": "NationalStatisticsController.新增指标",
  687. "responses": {
  688. "200": {
  689. "description": "",
  690. "schema": {
  691. "$ref": "#/definitions/models.AddEdbInfoReq"
  692. }
  693. }
  694. }
  695. }
  696. },
  697. "/national_statistics/refresh": {
  698. "post": {
  699. "tags": [
  700. "national_statistics"
  701. ],
  702. "description": "刷新指标\n\u003cbr\u003e",
  703. "operationId": "NationalStatisticsController.刷新指标",
  704. "responses": {
  705. "200": {
  706. "description": "",
  707. "schema": {
  708. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  709. }
  710. }
  711. }
  712. }
  713. },
  714. "/pb/add": {
  715. "post": {
  716. "tags": [
  717. "pb"
  718. ],
  719. "description": "新增彭博指标接口\n\u003cbr\u003e",
  720. "operationId": "PbController.新增彭博指标接口",
  721. "responses": {
  722. "200": {
  723. "description": "",
  724. "schema": {
  725. "$ref": "#/definitions/models.AddEdbInfoReq"
  726. }
  727. }
  728. }
  729. }
  730. },
  731. "/pb/refresh": {
  732. "post": {
  733. "tags": [
  734. "pb"
  735. ],
  736. "description": "刷新彭博指标接口\n\u003cbr\u003e",
  737. "operationId": "PbController.刷新彭博指标接口",
  738. "responses": {
  739. "200": {
  740. "description": "",
  741. "schema": {
  742. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  743. }
  744. }
  745. }
  746. }
  747. },
  748. "/pb_finance/add": {
  749. "post": {
  750. "tags": [
  751. "pb_finance"
  752. ],
  753. "description": "新增彭博指标接口\n\u003cbr\u003e",
  754. "operationId": "PbFinanceController.新增彭博指标接口",
  755. "responses": {
  756. "200": {
  757. "description": "",
  758. "schema": {
  759. "$ref": "#/definitions/models.AddEdbInfoReq"
  760. }
  761. }
  762. }
  763. }
  764. },
  765. "/pb_finance/refresh": {
  766. "post": {
  767. "tags": [
  768. "pb_finance"
  769. ],
  770. "description": "刷新彭博指标接口\n\u003cbr\u003e",
  771. "operationId": "PbFinanceController.刷新彭博指标接口",
  772. "responses": {
  773. "200": {
  774. "description": "",
  775. "schema": {
  776. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  777. }
  778. }
  779. }
  780. }
  781. },
  782. "/predict/refresh": {
  783. "post": {
  784. "tags": [
  785. "predict"
  786. ],
  787. "description": "刷新预测指标接口(有些预测指标里面含有动态数据)\n\u003cbr\u003e",
  788. "operationId": "PredictController.刷新预测指标接口(有些预测指标里面含有动态数据)",
  789. "responses": {
  790. "200": {
  791. "description": "",
  792. "schema": {
  793. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  794. }
  795. }
  796. }
  797. }
  798. },
  799. "/predict/save": {
  800. "post": {
  801. "tags": [
  802. "predict"
  803. ],
  804. "description": "新增预测指标运算接口\n\u003cbr\u003e",
  805. "operationId": "PredictController.新增/编辑预测指标运算接口",
  806. "responses": {
  807. "200": {
  808. "description": "",
  809. "schema": {
  810. "$ref": "#/definitions/models.EdbInfoCalculateSaveReq"
  811. }
  812. }
  813. }
  814. }
  815. },
  816. "/predict_calculate/batch/save": {
  817. "post": {
  818. "tags": [
  819. "predict_calculate"
  820. ],
  821. "description": "累计值转月-同比值-同差等计算新增接口\n\u003cbr\u003e",
  822. "operationId": "PredictCalculateController.累计值转月-同比值-同差等计算新增",
  823. "parameters": [
  824. {
  825. "in": "body",
  826. "name": "request",
  827. "description": "type json string",
  828. "required": true,
  829. "schema": {
  830. "$ref": "#/definitions/models.EdbInfoCalculateBatchSaveReq"
  831. }
  832. }
  833. ],
  834. "responses": {
  835. "Ret=200": {
  836. "description": "返回指标id"
  837. }
  838. }
  839. }
  840. },
  841. "/predict_calculate/refresh": {
  842. "post": {
  843. "tags": [
  844. "predict_calculate"
  845. ],
  846. "description": "刷新计算指标接口\n\u003cbr\u003e",
  847. "operationId": "PredictCalculateController.刷新计算指标接口",
  848. "responses": {
  849. "200": {
  850. "description": "",
  851. "schema": {
  852. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  853. }
  854. }
  855. }
  856. }
  857. },
  858. "/predict_calculate/save": {
  859. "post": {
  860. "tags": [
  861. "predict_calculate"
  862. ],
  863. "description": "新增预测指标运算接口\n\u003cbr\u003e",
  864. "operationId": "PredictCalculateController.新增/编辑预测指标运算接口",
  865. "responses": {
  866. "200": {
  867. "description": "",
  868. "schema": {
  869. "$ref": "#/definitions/models.EdbInfoCalculateSaveReq"
  870. }
  871. }
  872. }
  873. }
  874. },
  875. "/python/add": {
  876. "post": {
  877. "tags": [
  878. "python"
  879. ],
  880. "description": "编辑指标接口\n\u003cbr\u003e",
  881. "operationId": "PythonController.编辑指标接口",
  882. "responses": {
  883. "200": {
  884. "description": "",
  885. "schema": {
  886. "$ref": "#/definitions/models.EditEdbInfoReq"
  887. }
  888. }
  889. }
  890. }
  891. },
  892. "/python/edit": {
  893. "post": {
  894. "tags": [
  895. "python"
  896. ],
  897. "description": "编辑指标接口\n\u003cbr\u003e",
  898. "operationId": "PythonController.编辑指标接口",
  899. "responses": {
  900. "200": {
  901. "description": "",
  902. "schema": {
  903. "$ref": "#/definitions/models.EditEdbInfoReq"
  904. }
  905. }
  906. }
  907. }
  908. },
  909. "/python/exec": {
  910. "post": {
  911. "tags": [
  912. "python"
  913. ],
  914. "description": "执行python代码接口\n\u003cbr\u003e",
  915. "operationId": "PythonController.执行python代码接口",
  916. "responses": {
  917. "200": {
  918. "description": "",
  919. "schema": {
  920. "$ref": "#/definitions/models.ExecPythonEdbReq"
  921. }
  922. }
  923. }
  924. }
  925. },
  926. "/sci/add": {
  927. "post": {
  928. "tags": [
  929. "sci"
  930. ],
  931. "description": "新增Sci指标接口\n\u003cbr\u003e",
  932. "operationId": "SciController.新增Sci指标接口",
  933. "responses": {
  934. "200": {
  935. "description": "",
  936. "schema": {
  937. "$ref": "#/definitions/models.AddEdbInfoReq"
  938. }
  939. }
  940. }
  941. }
  942. },
  943. "/sci/refresh": {
  944. "post": {
  945. "tags": [
  946. "sci"
  947. ],
  948. "description": "刷新sci指标接口\n\u003cbr\u003e",
  949. "operationId": "SciController.刷新sci指标接口",
  950. "responses": {
  951. "200": {
  952. "description": "",
  953. "schema": {
  954. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  955. }
  956. }
  957. }
  958. }
  959. },
  960. "/sh/add": {
  961. "post": {
  962. "tags": [
  963. "sh"
  964. ],
  965. "description": "新增上期所指标接口\n\u003cbr\u003e",
  966. "operationId": "ShController.新增上期所指标接口",
  967. "responses": {
  968. "200": {
  969. "description": "",
  970. "schema": {
  971. "$ref": "#/definitions/models.AddEdbInfoReq"
  972. }
  973. }
  974. }
  975. }
  976. },
  977. "/sh/refresh": {
  978. "post": {
  979. "tags": [
  980. "sh"
  981. ],
  982. "description": "刷新上期所指标接口\n\u003cbr\u003e",
  983. "operationId": "ShController.刷新上期所指标接口",
  984. "responses": {
  985. "200": {
  986. "description": "",
  987. "schema": {
  988. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  989. }
  990. }
  991. }
  992. }
  993. },
  994. "/shfe/add": {
  995. "post": {
  996. "tags": [
  997. "shfe"
  998. ],
  999. "description": "新增上期能源指标接口\n\u003cbr\u003e",
  1000. "operationId": "ShfeController.新增上期能源指标接口",
  1001. "responses": {
  1002. "200": {
  1003. "description": "",
  1004. "schema": {
  1005. "$ref": "#/definitions/models.AddEdbInfoReq"
  1006. }
  1007. }
  1008. }
  1009. }
  1010. },
  1011. "/shfe/refresh": {
  1012. "post": {
  1013. "tags": [
  1014. "shfe"
  1015. ],
  1016. "description": "刷新上期能源指标接口\n\u003cbr\u003e",
  1017. "operationId": "ShfeController.刷新上期能源指标接口",
  1018. "responses": {
  1019. "200": {
  1020. "description": "",
  1021. "schema": {
  1022. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  1023. }
  1024. }
  1025. }
  1026. }
  1027. },
  1028. "/smm/add": {
  1029. "post": {
  1030. "tags": [
  1031. "smm"
  1032. ],
  1033. "description": "新增有色指标接口\n\u003cbr\u003e",
  1034. "operationId": "SmmController.新增有色指标接口",
  1035. "responses": {
  1036. "200": {
  1037. "description": "",
  1038. "schema": {
  1039. "$ref": "#/definitions/models.AddEdbInfoReq"
  1040. }
  1041. }
  1042. }
  1043. }
  1044. },
  1045. "/smm/refresh": {
  1046. "post": {
  1047. "tags": [
  1048. "smm"
  1049. ],
  1050. "description": "刷新有色指标接口\n\u003cbr\u003e",
  1051. "operationId": "SmmController.刷新有色指标接口",
  1052. "responses": {
  1053. "200": {
  1054. "description": "",
  1055. "schema": {
  1056. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  1057. }
  1058. }
  1059. }
  1060. }
  1061. },
  1062. "/stock_plant/calculate": {
  1063. "post": {
  1064. "tags": [
  1065. "stock_plant"
  1066. ],
  1067. "description": "计算减产数\n\u003cbr\u003e",
  1068. "operationId": "StockPlantController.计算减产数",
  1069. "responses": {
  1070. "200": {
  1071. "description": "",
  1072. "schema": {
  1073. "$ref": "#/definitions/supply_analysis.CalculateVarietyReq"
  1074. }
  1075. }
  1076. }
  1077. }
  1078. },
  1079. "/stock_plant/refresh": {
  1080. "post": {
  1081. "tags": [
  1082. "stock_plant"
  1083. ],
  1084. "description": "刷新手工指标接口\n\u003cbr\u003e",
  1085. "operationId": "StockPlantController.刷新手工指标接口",
  1086. "responses": {
  1087. "200": {
  1088. "description": "",
  1089. "schema": {
  1090. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  1091. }
  1092. }
  1093. }
  1094. }
  1095. },
  1096. "/ths/add": {
  1097. "post": {
  1098. "tags": [
  1099. "ths"
  1100. ],
  1101. "description": "新增同花顺指标接口\n\u003cbr\u003e",
  1102. "operationId": "ThsController.新增同花顺指标接口",
  1103. "responses": {
  1104. "200": {
  1105. "description": "",
  1106. "schema": {
  1107. "$ref": "#/definitions/models.AddEdbInfoReq"
  1108. }
  1109. }
  1110. }
  1111. }
  1112. },
  1113. "/ths/refresh": {
  1114. "post": {
  1115. "tags": [
  1116. "ths"
  1117. ],
  1118. "description": "刷新同花顺指标接口\n\u003cbr\u003e",
  1119. "operationId": "ThsController.刷新同花顺指标接口",
  1120. "responses": {
  1121. "200": {
  1122. "description": "",
  1123. "schema": {
  1124. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  1125. }
  1126. }
  1127. }
  1128. }
  1129. },
  1130. "/wind/add": {
  1131. "post": {
  1132. "tags": [
  1133. "wind"
  1134. ],
  1135. "description": "新增wind指标接口\n\u003cbr\u003e",
  1136. "operationId": "WindController.新增wind指标接口",
  1137. "responses": {
  1138. "200": {
  1139. "description": "",
  1140. "schema": {
  1141. "$ref": "#/definitions/models.AddEdbInfoReq"
  1142. }
  1143. }
  1144. }
  1145. }
  1146. },
  1147. "/wind/refresh": {
  1148. "post": {
  1149. "tags": [
  1150. "wind"
  1151. ],
  1152. "description": "刷新wind指标接口\n\u003cbr\u003e",
  1153. "operationId": "WindController.刷新wind指标接口",
  1154. "responses": {
  1155. "200": {
  1156. "description": "",
  1157. "schema": {
  1158. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  1159. }
  1160. }
  1161. }
  1162. }
  1163. },
  1164. "/zz/add": {
  1165. "post": {
  1166. "tags": [
  1167. "zz"
  1168. ],
  1169. "description": "新增郑商所指标接口\n\u003cbr\u003e",
  1170. "operationId": "ZzController.新增郑商所指标接口",
  1171. "responses": {
  1172. "200": {
  1173. "description": "",
  1174. "schema": {
  1175. "$ref": "#/definitions/models.AddEdbInfoReq"
  1176. }
  1177. }
  1178. }
  1179. }
  1180. },
  1181. "/zz/refresh": {
  1182. "post": {
  1183. "tags": [
  1184. "zz"
  1185. ],
  1186. "description": "刷新郑商所指标接口\n\u003cbr\u003e",
  1187. "operationId": "ZzController.刷新郑商所指标接口",
  1188. "responses": {
  1189. "200": {
  1190. "description": "",
  1191. "schema": {
  1192. "$ref": "#/definitions/models.RefreshEdbInfoReq"
  1193. }
  1194. }
  1195. }
  1196. }
  1197. }
  1198. },
  1199. "definitions": {
  1200. "models.AddEdbInfoReq": {
  1201. "title": "AddEdbInfoReq",
  1202. "type": "object",
  1203. "properties": {
  1204. "EdbCode": {
  1205. "description": "指标编码",
  1206. "type": "string"
  1207. }
  1208. }
  1209. },
  1210. "models.CheckDeleteClassifyResp": {
  1211. "title": "CheckDeleteClassifyResp",
  1212. "type": "object"
  1213. },
  1214. "models.EdbInfoCalculateBatchSaveReq": {
  1215. "title": "EdbInfoCalculateBatchSaveReq",
  1216. "type": "object",
  1217. "properties": {
  1218. "AdminId": {
  1219. "description": "添加人id",
  1220. "type": "integer",
  1221. "format": "int64"
  1222. },
  1223. "AdminName": {
  1224. "description": "添加人名称",
  1225. "type": "string"
  1226. },
  1227. "CalculateFormula": {
  1228. "description": "计算公式",
  1229. "type": "string"
  1230. },
  1231. "Calendar": {
  1232. "description": "公历/农历",
  1233. "type": "string"
  1234. },
  1235. "ClassifyId": {
  1236. "description": "分类id",
  1237. "type": "integer",
  1238. "format": "int64"
  1239. },
  1240. "EdbInfoId": {
  1241. "description": "指标id",
  1242. "type": "integer",
  1243. "format": "int64"
  1244. },
  1245. "EdbInfoIdArr": {
  1246. "description": "关联指标列表",
  1247. "type": "array",
  1248. "items": {
  1249. "$ref": "#/definitions/models.EdbInfoCalculateEdbInfoIdReq"
  1250. }
  1251. },
  1252. "EdbName": {
  1253. "description": "指标名称",
  1254. "type": "string"
  1255. },
  1256. "Formula": {
  1257. "description": "N值/移动天数",
  1258. "type": "string"
  1259. },
  1260. "Frequency": {
  1261. "description": "频度",
  1262. "type": "string"
  1263. },
  1264. "FromEdbInfoId": {
  1265. "description": "计算来源指标id",
  1266. "type": "integer",
  1267. "format": "int64"
  1268. },
  1269. "MoveFrequency": {
  1270. "description": "移动频度:天/周/月/季/年",
  1271. "type": "string"
  1272. },
  1273. "MoveType": {
  1274. "description": "移动方式:1:领先(默认),2:滞后",
  1275. "type": "integer",
  1276. "format": "int64"
  1277. },
  1278. "Source": {
  1279. "description": "来源:1:同花顺,2:wind,3:彭博,4:指标运算,5:累计值转月,6:同比值,7:同差值,8:N数值移动平均计算,12:环比值,13:环差值,14:升频",
  1280. "type": "integer",
  1281. "format": "int64"
  1282. },
  1283. "Unit": {
  1284. "description": "单位",
  1285. "type": "string"
  1286. }
  1287. }
  1288. },
  1289. "models.EdbInfoCalculateEdbInfoIdReq": {
  1290. "title": "EdbInfoCalculateEdbInfoIdReq",
  1291. "type": "object",
  1292. "properties": {
  1293. "EdbInfoId": {
  1294. "description": "指标id",
  1295. "type": "integer",
  1296. "format": "int64"
  1297. },
  1298. "FromTag": {
  1299. "description": "指标对应标签",
  1300. "type": "string"
  1301. },
  1302. "MoveValue": {
  1303. "description": "移动的值",
  1304. "type": "integer",
  1305. "format": "int64"
  1306. }
  1307. }
  1308. },
  1309. "models.EdbInfoCalculateSaveReq": {
  1310. "title": "EdbInfoCalculateSaveReq",
  1311. "type": "object",
  1312. "properties": {
  1313. "AdminId": {
  1314. "description": "添加人id",
  1315. "type": "integer",
  1316. "format": "int64"
  1317. },
  1318. "AdminName": {
  1319. "description": "添加人名称",
  1320. "type": "string"
  1321. },
  1322. "CalculateFormula": {
  1323. "description": "计算公式",
  1324. "type": "string"
  1325. },
  1326. "ClassifyId": {
  1327. "description": "分类id",
  1328. "type": "integer",
  1329. "format": "int64"
  1330. },
  1331. "EdbInfoId": {
  1332. "description": "指标id",
  1333. "type": "integer",
  1334. "format": "int64"
  1335. },
  1336. "EdbInfoIdArr": {
  1337. "type": "array",
  1338. "items": {
  1339. "$ref": "#/definitions/models.EdbInfoFromTag"
  1340. }
  1341. },
  1342. "EdbName": {
  1343. "description": "指标名称",
  1344. "type": "string"
  1345. },
  1346. "Frequency": {
  1347. "description": "频率",
  1348. "type": "string"
  1349. },
  1350. "Unit": {
  1351. "description": "单位",
  1352. "type": "string"
  1353. }
  1354. }
  1355. },
  1356. "models.EdbInfoFromTag": {
  1357. "title": "EdbInfoFromTag",
  1358. "type": "object",
  1359. "properties": {
  1360. "EdbInfoId": {
  1361. "description": "指标id",
  1362. "type": "integer",
  1363. "format": "int64"
  1364. },
  1365. "FromTag": {
  1366. "description": "指标对应标签",
  1367. "type": "string"
  1368. }
  1369. }
  1370. },
  1371. "models.EditEdbInfoReq": {
  1372. "title": "EditEdbInfoReq",
  1373. "type": "object"
  1374. },
  1375. "models.ExecPythonEdbReq": {
  1376. "title": "ExecPythonEdbReq",
  1377. "type": "object",
  1378. "properties": {
  1379. "PythonCode": {
  1380. "description": "python代码",
  1381. "type": "string"
  1382. }
  1383. }
  1384. },
  1385. "models.RefreshEdbInfoReq": {
  1386. "title": "RefreshEdbInfoReq",
  1387. "type": "object",
  1388. "properties": {
  1389. "EdbCode": {
  1390. "description": "指标编码",
  1391. "type": "string"
  1392. },
  1393. "EdbInfoId": {
  1394. "description": "指标ID",
  1395. "type": "integer",
  1396. "format": "int64"
  1397. },
  1398. "StartDate": {
  1399. "description": "开始日期",
  1400. "type": "string"
  1401. }
  1402. }
  1403. },
  1404. "models.SaveAdjustEdbDataReq": {
  1405. "title": "SaveAdjustEdbDataReq",
  1406. "type": "object",
  1407. "properties": {
  1408. "Date": {
  1409. "description": "数据日期",
  1410. "type": "string"
  1411. },
  1412. "Value": {
  1413. "description": "数据值",
  1414. "type": "number",
  1415. "format": "double"
  1416. }
  1417. }
  1418. },
  1419. "models.SaveAdjustEdbReq": {
  1420. "title": "SaveAdjustEdbReq",
  1421. "type": "object",
  1422. "properties": {
  1423. "AdminId": {
  1424. "description": "添加人id",
  1425. "type": "integer",
  1426. "format": "int64"
  1427. },
  1428. "AdminName": {
  1429. "description": "添加人名称",
  1430. "type": "string"
  1431. },
  1432. "ClassifyId": {
  1433. "description": "分类id",
  1434. "type": "integer",
  1435. "format": "int64"
  1436. },
  1437. "DataList": {
  1438. "description": "指标对应的数据值",
  1439. "type": "array",
  1440. "items": {
  1441. "$ref": "#/definitions/models.SaveAdjustEdbDataReq"
  1442. }
  1443. },
  1444. "EdbInfoId": {
  1445. "description": "指标id",
  1446. "type": "integer",
  1447. "format": "int64"
  1448. },
  1449. "EdbName": {
  1450. "description": "指标名称",
  1451. "type": "string"
  1452. },
  1453. "Frequency": {
  1454. "description": "频度",
  1455. "type": "string"
  1456. },
  1457. "FromEdbInfoId": {
  1458. "description": "来源指标id",
  1459. "type": "integer",
  1460. "format": "int64"
  1461. },
  1462. "Unit": {
  1463. "description": "单位",
  1464. "type": "string"
  1465. }
  1466. }
  1467. },
  1468. "supply_analysis.CalculateVarietyReq": {
  1469. "title": "CalculateVarietyReq",
  1470. "type": "object",
  1471. "properties": {
  1472. "AdminId": {
  1473. "description": "操作人id",
  1474. "type": "integer",
  1475. "format": "int64"
  1476. },
  1477. "AdminName": {
  1478. "description": "操作人名称",
  1479. "type": "string"
  1480. },
  1481. "VarietyId": {
  1482. "description": "品种id",
  1483. "type": "integer",
  1484. "format": "int64"
  1485. }
  1486. }
  1487. }
  1488. },
  1489. "tags": [
  1490. {
  1491. "name": "ths",
  1492. "description": "同花顺\n"
  1493. },
  1494. {
  1495. "name": "pb",
  1496. "description": "彭博\n"
  1497. },
  1498. {
  1499. "name": "pb_finance",
  1500. "description": "PbFinanceController 彭博财务\n"
  1501. },
  1502. {
  1503. "name": "wind",
  1504. "description": "wind\n"
  1505. },
  1506. {
  1507. "name": "lz",
  1508. "description": "隆众\n"
  1509. },
  1510. {
  1511. "name": "lt",
  1512. "description": "路透社\n"
  1513. },
  1514. {
  1515. "name": "smm",
  1516. "description": "有色\n"
  1517. },
  1518. {
  1519. "name": "mysteel",
  1520. "description": "钢联\n"
  1521. },
  1522. {
  1523. "name": "manual",
  1524. "description": "手工指标\n"
  1525. },
  1526. {
  1527. "name": "calculate",
  1528. "description": "CalculateController 计算指标\n"
  1529. },
  1530. {
  1531. "name": "zz",
  1532. "description": "郑商所\n"
  1533. },
  1534. {
  1535. "name": "dl",
  1536. "description": "大商所\n"
  1537. },
  1538. {
  1539. "name": "sh",
  1540. "description": "上期所\n"
  1541. },
  1542. {
  1543. "name": "cffex",
  1544. "description": "中金所\n"
  1545. },
  1546. {
  1547. "name": "shfe",
  1548. "description": "上期能源\n"
  1549. },
  1550. {
  1551. "name": "gie",
  1552. "description": "欧洲天然气\n"
  1553. },
  1554. {
  1555. "name": "coal",
  1556. "description": "中国煤炭网\n"
  1557. },
  1558. {
  1559. "name": "python",
  1560. "description": "PythonController 计算指标\n"
  1561. },
  1562. {
  1563. "name": "google_travel",
  1564. "description": "谷歌出行数据\n"
  1565. },
  1566. {
  1567. "name": "mysteel_chemical",
  1568. "description": "MySteelChemicalController 钢联化工\n"
  1569. },
  1570. {
  1571. "name": "predict_calculate",
  1572. "description": "PredictCalculateController 预测计算指标\n"
  1573. },
  1574. {
  1575. "name": "eia_steo",
  1576. "description": "EiaSteoController Eia Steo报告\n"
  1577. },
  1578. {
  1579. "name": "predict",
  1580. "description": "PredictController 预测指标\n"
  1581. },
  1582. {
  1583. "name": "future_good",
  1584. "description": "FutureGoodEdbInfoController 期货数据\n"
  1585. },
  1586. {
  1587. "name": "sci",
  1588. "description": "有色\n"
  1589. },
  1590. {
  1591. "name": "com_trade",
  1592. "description": "ComTradeController Eia Steo报告\n"
  1593. },
  1594. {
  1595. "name": "baiinfo",
  1596. "description": "百川盈孚\n"
  1597. },
  1598. {
  1599. "name": "stock_plant",
  1600. "description": "StockPlantController 存量装置\n"
  1601. },
  1602. {
  1603. "name": "national_statistics",
  1604. "description": "NationalStatisticsController 国家统计局\n"
  1605. },
  1606. {
  1607. "name": "fubao",
  1608. "description": "富宝-数据对接\n"
  1609. }
  1610. ]
  1611. }