You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
580 B

  1. package main
  2. type CellModel struct {
  3. Radio string `json:"radio"`
  4. MCC string `json:"mcc"`
  5. Net int `json:"net"`
  6. Area int `json:"area"`
  7. Cell int `json:"cell"`
  8. Unit int `json:"unit"`
  9. Lat float64 `json:"lat"`
  10. Lon float64 `json:"lon"`
  11. Range float64 `json:"range"`
  12. Samples int `json:"samples"`
  13. Changeable string `json:"changeable"`
  14. Created int64 `json:"created"`
  15. Updated int64 `json:"updated"`
  16. AverageSignal float64 `json:"averagesignal"`
  17. }