limitgift.go 809 B

1234567891011121314151617181920212223242526
  1. package forms
  2. type LimitGiftListReq struct {
  3. ChannelId string `json:"channel_id" form:"channel_id"`
  4. Day string `form:"day"`
  5. EndDay string `form:"endDay"`
  6. Page int64 `json:"page" form:"page"`
  7. PerPage int64 `json:"pageSize" form:"pageSize"`
  8. ServerId int `json:"server_id" form:"server_id"`
  9. }
  10. type LimitGiftListItem struct {
  11. ID int32 `json:"id"`
  12. GoodsType string `json:"type"`
  13. GoodsValue string `json:"value"`
  14. AllTriggerCount int64 `json:"allTriggerCount"`
  15. ShowCount int64 `json:"showCount"`
  16. PayCount int64 `json:"payCount"`
  17. }
  18. type LimitGiftListRespData struct {
  19. Code int32 `json:"code"`
  20. Msg string `json:"msg"`
  21. Data []*LimitGiftListItem `json:"data"`
  22. Total int64 `json:"total"`
  23. }