user_country_count.go 200 B

1234567
  1. package model
  2. type UserCountryCount struct {
  3. Country string `json:"country"` // 国家
  4. IPCount int `json:"ip_count"` // IP数量
  5. Percentage int `json:"percentage"` // 百分比
  6. }