user_country_count.go 254 B

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