refactor: reorganize modules and add Linux build tooling

This commit is contained in:
2026-08-09 12:41:08 +08:00
parent 86024fa81d
commit 5cc5fd92ed
1461 changed files with 4054 additions and 4724 deletions

View File

@@ -0,0 +1,7 @@
POST http://127.0.0.1:12441/order.Summary/Cancel
content-type: application/json
Authorization: {{BSM_TOKEN}}
{
"order_no":"2542614613018743"
}

View File

@@ -0,0 +1,7 @@
POST http://127.0.0.1:12441/order.Summary/Check
content-type: application/json
Authorization: {{BSM_TOKEN}}
{
}

View File

@@ -0,0 +1,7 @@
POST http://127.0.0.1:12441/order.Summary/Confirm
content-type: application/json
Authorization: {{BSM_TOKEN}}
{
"order_no":"2542615350574277"
}

View File

@@ -0,0 +1,7 @@
POST http://127.0.0.1:12441/order.Summary/Get
content-type: application/json
Authorization: {{BSM_TOKEN}}
{
"identity":"019670e8-d958-7f17-8463-4fa37e9728eb"
}

View File

@@ -0,0 +1,7 @@
POST http://127.0.0.1:12441/order.Summary/List
content-type: application/json
Authorization: {{BSM_TOKEN}}
{
}

View File

@@ -0,0 +1,10 @@
POST http://127.0.0.1:12441/order.Summary/QuickCreateByProduct
content-type: application/json
Authorization: {{BSM_TOKEN}}
{
"product_identity":"01965b81-9869-766d-ba8a-01af33d135bc",
"store_identity":"01965b51-5344-7218-a9b9-bc71031f6f10",
"address_identity":"01966c38-7d46-726d-815a-b81baa08e0a6",
"number":5
}

View File

@@ -0,0 +1,7 @@
POST http://127.0.0.1:12441/order.Summary/SimulatePay
content-type: application/json
Authorization: {{BSM_TOKEN}}
{
"identity":["019670bf-4917-75ef-99b9-8a290cb36c6e"]
}

View File

@@ -0,0 +1,8 @@
POST http://127.0.0.1:12441/order.Summary/SimulateReceiving
content-type: application/json
Authorization: {{BSM_TOKEN}}
{
"identity":"019670bf-4917-75ef-99b9-8a290cb36c6e"
}

View File

@@ -0,0 +1,8 @@
POST http://127.0.0.1:12441/order.Summary/SimulateShipments
content-type: application/json
Authorization: {{BSM_TOKEN}}
{
"identity":"019670bf-4917-75ef-99b9-8a290cb36c6e",
"member_identity":"d20dacde35d5410786cfe9b6b48e478a"
}

View File

@@ -0,0 +1,17 @@
POST http://127.0.0.1:12441/order.Summary/Submit
content-type: application/json
Authorization: {{BSM_TOKEN}}
{
"address": {
"country": "Canada",
"province": "British Columbia",
"city": "Vancouver",
"area": "Downtown",
"detail": "777 Dunsmuir Street, 17th Floor",
"contact": "John Doe",
"phone": " +1 (555) 123-4567",
"email": "john.doe@example.com",
"zip_code": " V7Y 1K4"
}
}