智盟项目
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

playlet_order.go 942 B

1 rok temu
1234567891011121314151617181920212223242526272829
  1. package md
  2. type PlayletVideoOrder struct {
  3. Appid int `json:"appid"`
  4. Channel string `json:"channel"`
  5. OrderId string `json:"order_id"`
  6. PayDate string `json:"pay_date"`
  7. Price int `json:"price"`
  8. RefundDate string `json:"refund_date"`
  9. SourceId string `json:"source_id"`
  10. Status int `json:"status"`
  11. Title string `json:"title"`
  12. SourceType string `json:"source_type"`
  13. SettleType string `json:"settle_type"`
  14. }
  15. type PlayletAdvOrder struct {
  16. Appid int `json:"appid"`
  17. Channel string `json:"channel"`
  18. CreatedTime string `json:"created_time"`
  19. Price int `json:"price"`
  20. PointPv int `json:"point_pv"`
  21. PointUv int `json:"point_uv"`
  22. FinishPv int `json:"finish_pv"`
  23. FinishUv int `json:"finish_uv"`
  24. SourceId string `json:"source_id"`
  25. Title string `json:"title"`
  26. SourceType string `json:"source_type"`
  27. SettleType string `json:"settle_type"`
  28. }