golang 的 rabbitmq 消费项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
1.6 KiB

  1. package md
  2. type ZhiosOrdersEs struct {
  3. MasterId int `json:"master_id"`
  4. OrdKind string `json:"ord_kind"`
  5. OrdId string `json:"ord_id"`
  6. MainOrdId string `json:"main_ord_id"`
  7. StoreOrdId string `json:"store_ord_id"`
  8. GoodsId string `json:"goods_id"`
  9. Uid string `json:"uid"`
  10. BuyerPhone string `json:"buyer_phone"`
  11. CostPrice float64 `json:"cost_price"`
  12. State int32 `json:"state"`
  13. StateZh string `json:"state_zh"`
  14. PayTime interface{} `json:"pay_time"`
  15. PayChannel int32 `json:"pay_channel"`
  16. PayChannelZh string `json:"pay_channel_zh"`
  17. ReceiverPhone string `json:"receiver_phone"`
  18. ReceiverName string `json:"receiver_name"`
  19. ReceiverAddressDetail string `json:"receiver_address_detail"`
  20. ProvinceId string `json:"province_id"`
  21. CityId string `json:"city_id"`
  22. CountyId string `json:"county_id"`
  23. Province string `json:"province"`
  24. City string `json:"city"`
  25. County string `json:"county"`
  26. OrderType int32 `json:"order_type"`
  27. EstimateCommission float64 `json:"estimate_commission"`
  28. LogisticCompany string `json:"logistic_company"`
  29. OrdCreateTime string `json:"ord_create_time"`
  30. CreatedAt string `json:"created_at"`
  31. UpdatedAt string `json:"updated_at"`
  32. }