devices.go 752 B

1234567891011121314151617181920212223
  1. package task
  2. import (
  3. "server/dao/devices"
  4. "time"
  5. )
  6. func GatewayRoutingInspection() {
  7. g := devices.GateWay{}
  8. gatewayList, _ := g.PublicGateway()
  9. for _, gateway := range gatewayList {
  10. currentTime := time.Now()
  11. status := 1
  12. if (gateway.RecentOnline == time.Time{} || currentTime.Sub(gateway.RecentOnline).Minutes() > 15) { //如果上次在线时间与当前时间对比超过十五分钟则离线
  13. //离线 && 修改网关下所有设备的状态为离线
  14. status = 0
  15. _ = devices.UpdateCameraStatusByGatewayId(gateway.ID, status)
  16. _ = devices.UpdateScreensStatusByGatewayId(gateway.ID, status)
  17. //_ = devices.UpdateRadarStatusByGatewayId(gateway.ID, status)
  18. }
  19. _ = devices.UpdateGatewayStatus(gateway.GatewayCode, status)
  20. }
  21. }