workbenchDao.go 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. package dao
  2. import (
  3. "fmt"
  4. "strings"
  5. )
  6. // 工作台
  7. type CountDevice struct {
  8. CountNum int `json:"countNum"`
  9. DeviceType string `json:"deviceType"`
  10. }
  11. // 获取所有设备的数量
  12. func GetDeviceCount(tenantId string) ([]CountDevice, error) {
  13. var result []CountDevice
  14. var count CountDevice
  15. Db.Model(&LampPole{}).Select(" count(*) count_num, 'lamppole' device_type ").
  16. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  17. result = append(result, count)
  18. Db.Model(&CameraDevice{}).Select(" count(*) count_num, 'camera' device_type ").
  19. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  20. result = append(result, count)
  21. Db.Model(&Gateway{}).Select(" count(*) count_num, 'gateway' device_type ").
  22. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  23. result = append(result, count)
  24. Db.Model(&LightControl{}).Select(" count(*) count_num, 'control' device_type ").
  25. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  26. result = append(result, count)
  27. Db.Model(&SwitchBox{}).Select(" count(*) count_num, 'box' device_type ").
  28. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  29. result = append(result, count)
  30. Db.Model(&InfoBoard{}).Select(" count(*) count_num, 'board' device_type ").
  31. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  32. result = append(result, count)
  33. Db.Model(&OptoSensor{}).Select(" count(*) count_num, 'sensor' device_type ").
  34. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  35. result = append(result, count)
  36. Db.Model(&Zigbee{}).Select(" count(*) count_num, 'zigbee' device_type ").
  37. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  38. result = append(result, count)
  39. Db.Model(&AlarmTerminal{}).Select(" count(*) count_num, 'terminal' device_type ").
  40. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  41. result = append(result, count)
  42. Db.Model(&Alarm{}).Select(" count(*) count_num, 'alarmserve' device_type ").
  43. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  44. result = append(result, count)
  45. Db.Model(&IpBroadcast{}).Select(" count(*) count_num, 'ipcast' device_type ").
  46. Where("tenant_id = ? and is_deleted = 0", tenantId).Scan(&count)
  47. result = append(result, count)
  48. return result, nil
  49. }
  50. type CountAlarm struct {
  51. LastYearAlarm int `json:"lastYearAlarm"`
  52. LastMonthAlarm int `json:"lastMonthAlarm"`
  53. Backlog int `json:"backlog"`
  54. }
  55. func GetAlarmCount(tenantId string) (*CountAlarm, error) {
  56. var alarm CountAlarm
  57. return &alarm, nil
  58. }
  59. type CountJobTodo struct {
  60. BackJob int `json:"backJob"`
  61. LastMonthJob int `json:"lastMonthJob"`
  62. LastYearJob int `json:"lastYearJob"`
  63. }
  64. func GetCountJobTodo(tenantId string) (*CountJobTodo, error) {
  65. var todos CountJobTodo
  66. return &todos, nil
  67. }
  68. type Notification struct {
  69. Category int `json:"category"`
  70. Title string `json:"title"`
  71. }
  72. // func GetNotification(tenantId string) (*Notification, error) {
  73. // var notification Notification
  74. // return &notification, nil
  75. // }
  76. type DeviceState struct {
  77. DeviceType string `json:"deviceType"` //设备类型
  78. Name string `json:"name"` //设备名称
  79. Sn string `json:"sn"` //设备序列号
  80. }
  81. // 获取设备离线的状态
  82. func GetNotification(tenantId string) ([]DeviceState, error) {
  83. var result []DeviceState
  84. //灯杆设备
  85. Db.Model(&LampPole{}).Select(" pole_name as name, pole_sn as sn,status,'灯杆设备' device_type").
  86. Where("tenant_id = ? and status!=-1", tenantId).Find(&result)
  87. result = append(result)
  88. ////摄像机
  89. var camera []DeviceState
  90. Db.Model(&CameraDevice{}).Select(" device_name as name,device_sn as sn,'摄像机' device_type ").
  91. Where("tenant_id = ? and status!=-1", tenantId).Find(&camera)
  92. result = append(result, camera...)
  93. //网关
  94. var gateway []DeviceState
  95. Db.Model(&Gateway{}).Select(" gateway_name as name ,gateway_sn as sn,'网关' device_type ").
  96. Where("tenant_id = ? and status!=-1", tenantId).Find(&gateway)
  97. result = append(result, gateway...)
  98. //灯控
  99. var light []DeviceState
  100. Db.Model(&LightControl{}).Select(" name,sn,'灯控' device_type").
  101. Where("tenant_id = ? and status!=-1", tenantId).Find(&light)
  102. result = append(result, light...)
  103. //供电箱
  104. var box []DeviceState
  105. Db.Model(&SwitchBox{}).Select(" box_name as name ,box_sn as sn,'供电箱' device_type ").
  106. Where("tenant_id = ? and status!=-1", tenantId).Find(&box)
  107. result = append(result, box...)
  108. //信息基本屏
  109. var info []DeviceState
  110. Db.Model(&InfoBoard{}).Select(" 'info_name as name,sn,'信息基本屏' device_type ").
  111. Where(" tenant_id = ? and is_enable!=1", tenantId).Find(&info)
  112. result = append(result, info...)
  113. //集控器
  114. var sensor []DeviceState
  115. Db.Model(&OptoSensor{}).Select(" name,sn,'集控器' device_type ").
  116. Where("tenant_id = ? and status!=-1", tenantId).Find(&sensor)
  117. result = append(result, sensor...)
  118. //Zigbee集控器
  119. var zig []DeviceState
  120. Db.Model(&Zigbee{}).Select("name,sn,'Zigbee集控器' device_type").
  121. Where("tenant_id = ? and status!=-1", tenantId).Find(&zig)
  122. result = append(result, zig...)
  123. //一键求助终端
  124. var terminal []DeviceState
  125. Db.Model(&AlarmTerminal{}).Select(" terminal_name as name ,terminal_sn as sn,'一键求助终端' device_type").
  126. Where("tenant_id = ? and status!=-1", tenantId).Find(&terminal)
  127. result = append(result, terminal...)
  128. //一键求助管理机
  129. var alarm []DeviceState
  130. Db.Model(&Alarm{}).Select("serve_name as name ,serve_sn as sn,'一键求助管理机' device_type").
  131. Where("tenant_id = ? and status!=-1", tenantId).Find(&alarm)
  132. result = append(result, alarm...)
  133. //ip音柱
  134. var cast []DeviceState
  135. Db.Model(&IpBroadcast{}).Select("cast_name as name,cast_sn as sn,'ip音柱' device_type ").
  136. Where("tenant_id = ? and is_deleted!=0", tenantId).Find(&cast)
  137. result = append(result, cast...)
  138. //桥梁传感器
  139. var bridge []DeviceState
  140. Db.Model(&BridgeSensor{}).Select("name,sn,'桥梁传感器' device_type").
  141. Where("tenant_id = ? and status!=-1", tenantId).Find(&bridge)
  142. result = append(result, bridge...)
  143. fmt.Println(result)
  144. return result, nil
  145. }
  146. type AqiData struct {
  147. Name string
  148. Aqi float64
  149. }
  150. type OptoSensorVO struct {
  151. OptoSensor
  152. Ids string `json:"ids"` //用于查询多个ID
  153. Brand string `json:"brand"` //品牌名称
  154. Model string `json:"model"` //型号名称
  155. RunState string `json:"runState"` //运行状态
  156. NetworkState int `json:"networkState"` //网络状态
  157. RealTimeTemperature string `json:"realTimeTemperature"` //实时温度
  158. RealTimeWindSpeed string `json:"realTimeWindSpeed"` //实时风速
  159. AirQuality string `json:"airQuality"` //空气质量等级
  160. AirIndex int `json:"airIndex"` //空气质量指数
  161. IlluminationIntensity string `json:"illuminationIntensity"` //光照强度
  162. Pm25 string `json:"pm25"` //PM2.5
  163. Pm10 string `json:"pm10"` //PM10
  164. Humidity string `json:"humidity"` //湿度
  165. Pressure string `json:"pressure"` //气压
  166. Noise string `json:"noise"` //噪音
  167. Direction string `json:"direction"` //风向
  168. EndLineTime string `json:"endLineTime"` //最后在线时间
  169. QueryGatewayIds string `json:"queryGatewayIds"` //虚拟字段---用作网关调用这里关联
  170. GatewayName string `json:"gatewayName"` //所属网关名称
  171. GatewaySn string `json:"gatewaySn"` //所属网关编码
  172. DistrictName string `json:"districtName"` //所在区(AQI展示)
  173. }
  174. // 获取aqi
  175. func GetAqi(tenantId string) (*OptoSensorVO, error) {
  176. var sensorVO OptoSensorVO // 声明一个OptoSensorVO类型的变量sensorVO
  177. var optoSensor OptoSensor // 声明一个OptoSensor类型的变量optoSensor
  178. optoSensor.TenantId = tenantId // 将传入的tenantId赋值给optoSensor的TenantId字段
  179. optoSensor.IsDefault = 1 // 将optoSensor的IsDefault字段设置为1
  180. isSet := len(optoSensor.GetDevicesByTenantId()) // 调用optoSensor的GetDevicesByTenantId方法获取设备数量,并将结果赋值给isSet
  181. if isSet == 0 { // 如果isSet为0,即没有设备
  182. optoSensor.IsDefault = 0 // 将optoSensor的IsDefault字段设置为0
  183. }
  184. list := optoSensor.getList(optoSensor) // 调用optoSensor的getList方法获取设备列表,并将结果赋值给list
  185. if isSet == 0 { // 如果isSet为0,即没有设备
  186. for _, sensor := range list { // 遍历设备列表
  187. if sensor.NetworkState == 1 { // 如果设备的NetworkState字段为1
  188. sensorVO = sensor // 将该设备赋值给sensorVO
  189. break // 跳出循环
  190. }
  191. }
  192. } else { // 如果isSet不为0,即有设备
  193. if len(list) != 0 { // 如果设备列表不为空
  194. sensorVO = list[0] // 将设备列表的第一个设备赋值给sensorVO
  195. }
  196. }
  197. if sensorVO.RealTimeTemperature != "" { // 如果sensorVO的RealTimeTemperature字段不为空
  198. temp := strings.Split(sensorVO.RealTimeTemperature, " ") // 使用空格将RealTimeTemperature字段拆分成字符串数组temp
  199. if len(temp) == 2 { // 如果拆分后的数组长度为2
  200. temperature := temp[0] + " " + temp[1] // 将temp数组的第一个元素和第二个元素拼接成字符串,并赋值给temperature
  201. sensorVO.RealTimeTemperature = temperature // 将temperature赋值给sensorVO的RealTimeTemperature字段
  202. }
  203. }
  204. return &sensorVO, nil // 返回sensorVO的地址和nil作为错误值
  205. }