智盟项目
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.

19 lines
476 B

  1. package md
  2. type BihaiOrder struct {
  3. HasMore bool `json:"has_more"`
  4. NextId int `json:"next_id"`
  5. List []struct {
  6. OrderId string `json:"order_id"`
  7. MarketId string `json:"market_id"`
  8. CreatedAt string `json:"created_at"`
  9. Status string `json:"status"`
  10. Price string `json:"price"`
  11. LinkId string `json:"link_id"`
  12. PaySystems int `json:"pay_systems"`
  13. Ext struct {
  14. QwExt string `json:"qw_ext"`
  15. } `json:"ext"`
  16. } `json:"list"`
  17. }