user_country_count.go 231 B

123456789
  1. package entity
  2. type UserCountryResp struct {
  3. Country string `json:"country"` // 国家
  4. IPCount int `json:"ip_count"` // IP数量
  5. Percentage int `json:"percentage"` // 百分比
  6. }
  7. type UserCountryReq struct {
  8. }