Files
platforms/backend/internal/platform/org_delivery_point.go

12 lines
386 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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"`
}