golang 的 rabbitmq 消费项目
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

es_struct.go 1.7 KiB

il y a 1 an
il y a 1 an
1234567891011121314151617181920212223242526272829303132333435
  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. Gmv float64 `json:"gmv"`
  13. State int32 `json:"state"`
  14. StateZh string `json:"state_zh"`
  15. PayTime interface{} `json:"pay_time"`
  16. PayChannel int32 `json:"pay_channel"`
  17. GoodsNum int `json:"goods_num"`
  18. PayChannelZh string `json:"pay_channel_zh"`
  19. ReceiverPhone string `json:"receiver_phone"`
  20. ReceiverName string `json:"receiver_name"`
  21. ReceiverAddressDetail string `json:"receiver_address_detail"`
  22. ProvinceId string `json:"province_id"`
  23. CityId string `json:"city_id"`
  24. CountyId string `json:"county_id"`
  25. Province string `json:"province"`
  26. City string `json:"city"`
  27. County string `json:"county"`
  28. OrderType int32 `json:"order_type"`
  29. EstimateCommission float64 `json:"estimate_commission"`
  30. LogisticCompany string `json:"logistic_company"`
  31. OrdCreateTime string `json:"ord_create_time"`
  32. CreatedAt string `json:"created_at"`
  33. UpdatedAt string `json:"updated_at"`
  34. }