workbenchDao.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package dao
  2. type CountDevice struct {
  3. CountNum int `json:"countNum"`
  4. DeviceType string `json:"deviceType"`
  5. }
  6. func GetDeviceCount(tenantId int) ([]CountDevice, error) {
  7. var result []CountDevice
  8. var count CountDevice
  9. Db.Debug().Model(&LampPole{}).Select(" count(*) count_num, 'lamppole' device_type ").
  10. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  11. result = append(result, count)
  12. Db.Debug().Model(&CameraDevice{}).Select(" count(*) count_num, 'camera' device_type ").
  13. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  14. result = append(result, count)
  15. Db.Debug().Model(&Gateway{}).Select(" count(*) count_num, 'gateway' device_type ").
  16. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  17. result = append(result, count)
  18. Db.Debug().Model(&LightControl{}).Select(" count(*) count_num, 'control' device_type ").
  19. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  20. result = append(result, count)
  21. Db.Debug().Model(&SwitchBox{}).Select(" count(*) count_num, 'box' device_type ").
  22. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  23. result = append(result, count)
  24. Db.Debug().Model(&InfoBoard{}).Select(" count(*) count_num, 'board' device_type ").
  25. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  26. result = append(result, count)
  27. Db.Debug().Model(&OptoSensor{}).Select(" count(*) count_num, 'sensor' device_type ").
  28. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  29. result = append(result, count)
  30. Db.Debug().Model(&Zigbee{}).Select(" count(*) count_num, 'zigbee' device_type ").
  31. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  32. result = append(result, count)
  33. Db.Debug().Model(&AlarmTerminal{}).Select(" count(*) count_num, 'terminal' device_type ").
  34. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  35. result = append(result, count)
  36. Db.Debug().Model(&Alarm{}).Select(" count(*) count_num, 'alarmserve' device_type ").
  37. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  38. result = append(result, count)
  39. Db.Debug().Model(&IpBroadcast{}).Select(" count(*) count_num, 'ipcast' device_type ").
  40. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  41. result = append(result, count)
  42. return result, nil
  43. }
  44. type CountAlarm struct {
  45. LastYearAlarm int `json:"lastYearAlarm"`
  46. LastMonthAlarm int `json:"lastMonthAlarm"`
  47. Backlog int `json:"backlog"`
  48. }
  49. func GetAlarmCount(tenantId int) (*CountAlarm, error) {
  50. var alarm CountAlarm
  51. return &alarm, nil
  52. }