12 lines
386 B
Go
12 lines
386 B
Go
|
|
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"`
|
|||
|
|
}
|