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.

es_struct.go 1.7 KiB

1 year ago
12345678910111213141516171819202122232425262728293031323334
  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. GoodsNum int `json:"goods_num"`
  17. PayChannelZh string `json:"pay_channel_zh"`
  18. ReceiverPhone string `json:"receiver_phone"`
  19. ReceiverName string `json:"receiver_name"`
  20. ReceiverAddressDetail string `json:"receiver_address_detail"`
  21. ProvinceId string `json:"province_id"`
  22. CityId string `json:"city_id"`
  23. CountyId string `json:"county_id"`
  24. Province string `json:"province"`
  25. City string `json:"city"`
  26. County string `json:"county"`
  27. OrderType int32 `json:"order_type"`
  28. EstimateCommission float64 `json:"estimate_commission"`
  29. LogisticCompany string `json:"logistic_company"`
  30. OrdCreateTime string `json:"ord_create_time"`
  31. CreatedAt string `json:"created_at"`
  32. UpdatedAt string `json:"updated_at"`
  33. }