feat: 初始化平台总后台与核心API

This commit is contained in:
2026-07-26 18:06:14 +08:00
parent 44122809b1
commit 4382641e19
38 changed files with 1837 additions and 25 deletions

View File

@@ -0,0 +1,11 @@
package platform
// OrgDeliveryPoint 对应 org_delivery_point表示末端配送组织单元。
type OrgDeliveryPoint struct {
Identity string `json:"identity"`
DeliveryCode string `json:"deliveryCode"`
Name string `json:"name"`
GasStationName string `json:"gasStationName"`
ServiceArea string `json:"serviceArea"`
Status string `json:"status"`
}