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.
 
 
 

18 lines
431 B

  1. package md
  2. type HjyOrderCommisisonData struct {
  3. Time int `json:"time"`
  4. Msg string `json:"msg"`
  5. Code int `json:"code"`
  6. Data struct {
  7. Total string `json:"total"`
  8. List []HjyOrderCommisison `json:"list"`
  9. } `json:"data"`
  10. }
  11. type HjyOrderCommisison struct {
  12. SettlementStatus string `json:"settlement_status"`
  13. SettlementTime string `json:"settlement_time"`
  14. OrderId string `json:"order_id"`
  15. }