workbenchDao.go 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. package dao
  2. import (
  3. "strings"
  4. )
  5. type CountDevice struct {
  6. CountNum int `json:"countNum"`
  7. DeviceType string `json:"deviceType"`
  8. }
  9. func GetDeviceCount(tenantId string) ([]CountDevice, error) {
  10. var result []CountDevice
  11. var count CountDevice
  12. Db.Model(&LampPole{}).Select(" count(*) count_num, 'lamppole' device_type ").
  13. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  14. result = append(result, count)
  15. Db.Model(&CameraDevice{}).Select(" count(*) count_num, 'camera' device_type ").
  16. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  17. result = append(result, count)
  18. Db.Model(&Gateway{}).Select(" count(*) count_num, 'gateway' device_type ").
  19. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  20. result = append(result, count)
  21. Db.Model(&LightControl{}).Select(" count(*) count_num, 'control' device_type ").
  22. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  23. result = append(result, count)
  24. Db.Model(&SwitchBox{}).Select(" count(*) count_num, 'box' device_type ").
  25. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  26. result = append(result, count)
  27. Db.Model(&InfoBoard{}).Select(" count(*) count_num, 'board' device_type ").
  28. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  29. result = append(result, count)
  30. Db.Model(&OptoSensor{}).Select(" count(*) count_num, 'sensor' device_type ").
  31. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  32. result = append(result, count)
  33. Db.Model(&Zigbee{}).Select(" count(*) count_num, 'zigbee' device_type ").
  34. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  35. result = append(result, count)
  36. Db.Model(&AlarmTerminal{}).Select(" count(*) count_num, 'terminal' device_type ").
  37. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  38. result = append(result, count)
  39. Db.Model(&Alarm{}).Select(" count(*) count_num, 'alarmserve' device_type ").
  40. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  41. result = append(result, count)
  42. Db.Model(&IpBroadcast{}).Select(" count(*) count_num, 'ipcast' device_type ").
  43. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  44. result = append(result, count)
  45. return result, nil
  46. }
  47. type CountAlarm struct {
  48. LastYearAlarm int `json:"lastYearAlarm"`
  49. LastMonthAlarm int `json:"lastMonthAlarm"`
  50. Backlog int `json:"backlog"`
  51. }
  52. func GetAlarmCount(tenantId string) (*CountAlarm, error) {
  53. var alarm CountAlarm
  54. return &alarm, nil
  55. }
  56. type CountJobTodo struct {
  57. BackJob int `json:"backJob"`
  58. LastMonthJob int `json:"lastMonthJob"`
  59. LastYearJob int `json:"lastYearJob"`
  60. }
  61. func GetCountJobTodo(tenantId string) (*CountJobTodo, error) {
  62. var todos CountJobTodo
  63. return &todos, nil
  64. }
  65. type Notification struct {
  66. Category int `json:"category"`
  67. Title string `json:"title"`
  68. }
  69. func GetNotification(tenantId string) (*Notification, error) {
  70. var notification Notification
  71. return &notification, nil
  72. }
  73. type AqiData struct {
  74. Name string
  75. Aqi float64
  76. }
  77. type OptoSensorVO struct {
  78. OptoSensor
  79. Ids string `json:"ids"` //用于查询多个ID
  80. Brand string `json:"brand"` //品牌名称
  81. Model string `json:"model"` //型号名称
  82. RunState string `json:"runState"` //运行状态
  83. NetworkState int `json:"networkState"` //网络状态
  84. RealTimeTemperature string `json:"realTimeTemperature"` //实时温度
  85. RealTimeWindSpeed string `json:"realTimeWindSpeed"` //实时风速
  86. AirQuality string `json:"airQuality"` //空气质量等级
  87. AirIndex int `json:"airIndex"` //空气质量指数
  88. IlluminationIntensity string `json:"illuminationIntensity"` //光照强度
  89. Pm25 string `json:"pm25"` //PM2.5
  90. Pm10 string `json:"pm10"` //PM10
  91. Humidity string `json:"humidity"` //湿度
  92. Pressure string `json:"pressure"` //气压
  93. Noise string `json:"noise"` //噪音
  94. Direction string `json:"direction"` //风向
  95. EndLineTime string `json:"endLineTime"` //最后在线时间
  96. QueryGatewayIds string `json:"queryGatewayIds"` //虚拟字段---用作网关调用这里关联
  97. GatewayName string `json:"gatewayName"` //所属网关名称
  98. GatewaySn string `json:"gatewaySn"` //所属网关编码
  99. DistrictName string `json:"districtName"` //所在区(AQI展示)
  100. }
  101. func GetAqi(tenantId string) (*OptoSensorVO, error) {
  102. var sensorVO OptoSensorVO
  103. var optoSensor OptoSensor
  104. optoSensor.TenantId = tenantId
  105. optoSensor.IsDefault = 1
  106. isSet := len(optoSensor.GetDevicesByTenantId())
  107. if isSet == 0 {
  108. optoSensor.IsDefault = 0
  109. }
  110. list := optoSensor.getList(optoSensor)
  111. if isSet == 0 {
  112. for _, sensor := range list {
  113. if sensor.NetworkState == 1 {
  114. sensorVO = sensor
  115. break
  116. }
  117. }
  118. } else {
  119. if len(list) != 0 {
  120. sensorVO = list[0]
  121. }
  122. }
  123. if sensorVO.RealTimeTemperature != "" {
  124. temp := strings.Split(sensorVO.RealTimeTemperature, " ")
  125. if len(temp) == 2 {
  126. temperature := temp[0] + " " + temp[1]
  127. sensorVO.RealTimeTemperature = temperature
  128. }
  129. }
  130. return &sensorVO, nil
  131. }