device.go 550 B

123456789101112131415161718
  1. package dao
  2. import "time"
  3. type Device struct {
  4. ID int `json:"id"`
  5. Sn string `json:"sn"`
  6. Ip string `json:"ip"`
  7. RegionId int `json:"regionId"`
  8. Name string `json:"name"`
  9. Genre string `json:"genre"`
  10. State int `json:"state"`
  11. IsSun bool `json:"isSun"`
  12. LoopNumber int `json:"loopNumber"`
  13. OnlineTime time.Time `json:"onlineTime"`
  14. DeviceLoops []DeviceLoop `json:"deviceLoops"`
  15. Sun Sun `json:"sun"`
  16. }