智盟项目
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

30 行
1.2 KiB

  1. package md
  2. type OilData struct {
  3. OutUserId string `json:"outUserId"`
  4. Cellphone string `json:"cellphone"`
  5. OrderId string `json:"orderId"`
  6. CityId string `json:"cityId"`
  7. DdCityId string `json:"ddCityId"`
  8. CityName string `json:"cityName"`
  9. StoreId string `json:"storeId"`
  10. StoreName string `json:"storeName"`
  11. ItemName string `json:"itemName"`
  12. GunNo string `json:"gunNo"`
  13. Quantity float64 `json:"quantity"`
  14. TotalMoney int `json:"totalMoney"`
  15. RealMoney int `json:"realMoney"`
  16. ServiceFee int `json:"serviceFee"`
  17. PayStatus int `json:"payStatus"`
  18. PayTime string `json:"payTime"`
  19. RefundStatus int `json:"refundStatus"`
  20. OrderStatus int `json:"orderStatus"`
  21. OrderSourceStatus int `json:"orderSourceStatus"`
  22. OrderTime string `json:"orderTime"`
  23. PayType int `json:"payType"`
  24. SourcePayType int `json:"sourcePayType"`
  25. UnitPrice int `json:"unitPrice"`
  26. OrderPayInfo string `json:"orderPayInfo"`
  27. BillingType int `json:"billingType"`
  28. }