智盟项目
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 个月前
123456789101112131415161718
  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. }