- package md
-
- type OilData struct {
- OutUserId string `json:"outUserId"`
- Cellphone string `json:"cellphone"`
- OrderId string `json:"orderId"`
- CityId string `json:"cityId"`
- DdCityId string `json:"ddCityId"`
- CityName string `json:"cityName"`
- StoreId string `json:"storeId"`
- StoreName string `json:"storeName"`
- ItemName string `json:"itemName"`
- GunNo string `json:"gunNo"`
- Quantity float64 `json:"quantity"`
- TotalMoney int `json:"totalMoney"`
- RealMoney int `json:"realMoney"`
- ServiceFee int `json:"serviceFee"`
- PayStatus int `json:"payStatus"`
- PayTime string `json:"payTime"`
- RefundStatus int `json:"refundStatus"`
- OrderStatus int `json:"orderStatus"`
- OrderSourceStatus int `json:"orderSourceStatus"`
- OrderTime string `json:"orderTime"`
- PayType int `json:"payType"`
- SourcePayType int `json:"sourcePayType"`
- UnitPrice int `json:"unitPrice"`
- OrderPayInfo string `json:"orderPayInfo"`
- BillingType int `json:"billingType"`
- }
|