params.go 972 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package bws
  2. // GameRes .
  3. const (
  4. GameResWin = 1
  5. GameResFail = 2
  6. )
  7. // ParamPoints points param
  8. type ParamPoints struct {
  9. Bid int64 `form:"bid" validate:"required"`
  10. Tp int64 `form:"tp"`
  11. }
  12. // ParamID point or achievements id param
  13. type ParamID struct {
  14. Bid int64 `form:"bid" validate:"required"`
  15. ID int64 `form:"id"`
  16. Day string `form:"day"`
  17. }
  18. // ParamAward point or achievements id param
  19. type ParamAward struct {
  20. Bid int64 `form:"bid" validate:"required"`
  21. Aid int64 `form:"aid" validate:"required"`
  22. Key string `form:"key"`
  23. Mid int64 `form:"mid"`
  24. }
  25. // ParamBinding binding param
  26. type ParamBinding struct {
  27. Bid int64 `form:"bid" validate:"required"`
  28. Key string `form:"key" validate:"required"`
  29. }
  30. // ParamUnlock .
  31. type ParamUnlock struct {
  32. Bid int64 `form:"bid" validate:"required"`
  33. Pid int64 `form:"pid" validate:"required"`
  34. Key string `form:"key"`
  35. Mid int64 `form:"mid"`
  36. GameResult int `form:"game_result"`
  37. }