h5_check.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. package apis
  2. type TGdH5ServiceAccessCount struct {
  3. Id int64 `json:"-"`
  4. H5ServiceMerchantId int64 `json:"h5_service_merchant_id"`
  5. Count int64 `json:"count"`
  6. FailCount int64 `json:"fail_count"`
  7. CreateTime string `json:"create_time"`
  8. }
  9. type ManagementH5AddCountReq struct {
  10. H5ServiceMerchantId int64 `json:"h5_service_merchant_id"`
  11. CountType int `json:"count_type"`
  12. ErrorCode int `json:"error_code"`
  13. }
  14. type ManagementH5AddCountReply struct {
  15. }
  16. type MangementH5AuthCheck struct {
  17. MerchantId int64 `json:"merchant_id"`
  18. H5ApiId int64 `json:"h5_api_id"`
  19. H5ServiceId int64 `json:"h5_service_id"`
  20. H5ServiceMerchantId int64 `json:"h5_service_merchant_id"`
  21. //H5Router string `json:"h5_router"`
  22. CountType int `json:"count_type"`
  23. IsFree bool `json:"is_free"`
  24. }
  25. type ManagementH5AuthCheckReq struct {
  26. AppKey string `json:"app_key"`
  27. H5Router string `json:"h5_router"`
  28. }
  29. type ManagementH5AuthCheckReply struct {
  30. ThemeColor string `json:"theme_color"`
  31. Data string `json:"data"`
  32. }