heartbeat.go 310 B

123456789101112
  1. package models
  2. type Heartbeat struct {
  3. Serial string `json:"serial"`
  4. DeviceIp string `json:"deviceIp"`
  5. ServerIp string `json:"serverIp"`
  6. Gps string `json:"gps"`
  7. Status int `json:"status"`
  8. Nettype int `json:"nettype"`
  9. Devtype string `json:"devtype"`
  10. Softver string `json:"softver"`
  11. }