order.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package order
  2. // Order str
  3. type Order struct {
  4. ExeOdID int64 `json:"execute_order_id"`
  5. BzOdName string `json:"business_order_name"`
  6. IDCode int64 `json:"id_code"`
  7. GameBaseID int64 `json:"game_base_id"`
  8. GameName string `json:"game_name"`
  9. }
  10. // Oasis 绿洲计划
  11. type Oasis struct {
  12. State int `json:"state"`
  13. RealeseOrder int64 `json:"running_execute_order_count"` //投放商单数
  14. TotalOrder int64 `json:"total_execute_order_count"` //总商单数
  15. }
  16. // Growth for order.
  17. type Growth struct {
  18. State int `json:"state"`
  19. YesterdayIncome float64 `json:"yesterday_income"` //昨日收入
  20. MonthIncome float64 `json:"present_month_income"` //本月收入
  21. }
  22. // OasisEarnings for order.
  23. type OasisEarnings struct {
  24. State int `json:"state"`
  25. Realese int64 `json:"release"` //投放商单数
  26. Total int64 `json:"total"` //总商单数
  27. }
  28. // GrowthEarnings for order.
  29. type GrowthEarnings struct {
  30. State int `json:"state"`
  31. Yesterday float64 `json:"yesterday"` //昨日收入
  32. Month float64 `json:"month"` //本月收入
  33. }
  34. // UpValidate for up validate.
  35. type UpValidate struct {
  36. MID int64 `json:"mid"`
  37. State int `json:"state"` //0:禁止,1:允许
  38. }