From c734d71c365256089e9b33e826e8ed1231729ee2 Mon Sep 17 00:00:00 2001 From: vipg Date: Tue, 18 Nov 2025 12:37:30 +0800 Subject: [PATCH] add --- backend/README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/backend/README.md b/backend/README.md index e2e64f8..570ff8f 100644 --- a/backend/README.md +++ b/backend/README.md @@ -89,4 +89,31 @@ curl -X POST https://api.fishestlife.com/exchange/create \ "short_name": "中金所", "code": "CFFEX" }' + + # 创建大连商品期货交易所 +curl -X POST https://api.fishestlife.com/exchange/create \ + -H "Content-Type: application/json" \ + -d '{ + "name": "大连商品交易所", + "short_name": "大商所", + "code": "DCE" + }' + +# 创建广州期货交易所 +curl -X POST https://api.fishestlife.com/exchange/create \ + -H "Content-Type: application/json" \ + -d '{ + "name": "广州期货交易所", + "short_name": "广期所", + "code": "GFEX" + }' + +# 创建上海国际能源交易中心 +curl -X POST https://api.fishestlife.com/exchange/create \ + -H "Content-Type: application/json" \ + -d '{ + "name": "上海国际能源交易中心", + "short_name": "上期能源", + "code": "INE" + }' --- \ No newline at end of file