gatewayRelationDao.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package dao
  2. import (
  3. "time"
  4. )
  5. // GatewayRelation 网关挂载设备关联信息表
  6. type GatewayRelation struct {
  7. ID int `gorm:"type:int;primary_key"` //编号 网关ID
  8. CameraCount int `gorm:"type:int;default 0" comment:"球机数量"`
  9. LightControlCount int `gorm:"type:int;default 0"` //灯控数量
  10. InfoBoardCount int `gorm:"type:int;default 0"` //信息屏数量
  11. OptoSensorCount int `gorm:"type:int;default 0"` //环境传感器数量
  12. ZigbeeCount int `gorm:"type:int;default 0"` //Zigbee设备数量
  13. AlarmTerminalCount int `gorm:"type:int;default 0"` //告警终端数量
  14. CaptureUnitCount int `gorm:"type:int;default 0"` //抓拍单元数量
  15. IpBroadcastCount int `gorm:"type:int;default 0"` //IP音柱数量
  16. CurveSensorCount int `gorm:"type:int;default 0" comment:"信息屏"`
  17. Total int `gorm:"type:int;default 0"` //总数
  18. TenantId string `gorm:"type:varchar(12)" json:"tenantId"` //租户ID
  19. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  20. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  21. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删
  22. }
  23. func (GatewayRelation) TableName() string {
  24. return "device_gateway_relation"
  25. }
  26. func (c *GatewayRelation) Get() error {
  27. return Db.Model(&c).Where("id = ?", c.ID).Find(&c).Error
  28. }
  29. // 2022-12-08 dsx 查出所有数据更新进去
  30. func (c *GatewayRelation) Update() error {
  31. gatewayId := c.ID
  32. relation := GatewayRelation{}
  33. sql := `SELECT * from (
  34. (SELECT count(1) camera_count from device_camera where is_deleted=0 and gateway_id in (?)) as camera_count,
  35. (SELECT count(1) light_control_count from device_light_control where is_deleted=0 and gateway_id in (?)) as light_control_count,
  36. (SELECT count(1) info_board_count from device_info_board where is_deleted=0 and gateway_id in (?)) as info_board_count,
  37. (SELECT count(1) opto_sensor_count from device_opto_sensor where is_deleted=0 and gateway_id in (?)) as opto_sensor_count,
  38. (SELECT count(1) zigbee_count from device_zigbee where is_deleted=0 and gateway_id in (?)) as zigbee_count,
  39. (SELECT count(1) alarm_terminal_count from device_a_key_alarm_terminal where is_deleted=0 and gateway_id in (?)) as alarm_terminal_count,
  40. (SELECT count(1) capture_unit_count from device_capture_unit where is_deleted=0 and gateway_id in (?)) as capture_unit_count,
  41. (SELECT count(1) ip_broadcast_count from device_ip_broadcast where is_deleted=0 and gateway_id in (?)) as ip_broadcast_count,
  42. (SELECT count(1) curve_sensor_count from device_curve_sensor where is_deleted=0 and gateway_id in (?)) as curve_sensor_count
  43. ) limit 1`
  44. Db.Model(&c).Raw(sql, gatewayId, gatewayId, gatewayId, gatewayId, gatewayId, gatewayId, gatewayId, gatewayId, gatewayId).Scan(&relation)
  45. relation.Total = relation.CameraCount + relation.LightControlCount + relation.InfoBoardCount +
  46. relation.OptoSensorCount + relation.ZigbeeCount + relation.AlarmTerminalCount +
  47. relation.CaptureUnitCount + relation.IpBroadcastCount + relation.CurveSensorCount
  48. var count int64
  49. _ = Db.Model(&c).Where(" id = ? ", gatewayId).Count(&count)
  50. if count > 0 {
  51. relation.UpdateTime = time.Now()
  52. if relation.Total > 0 {
  53. return Db.Model(&c).Where(" id = ? ", gatewayId).Updates(&relation).Error
  54. } else {
  55. return Db.Model(&c).Where(" id = ? ", gatewayId).Updates(map[string]interface{}{"total": 0}).Error
  56. }
  57. } else {
  58. relation.ID = int(gatewayId)
  59. relation.UpdateTime = time.Now()
  60. relation.CreateTime = time.Now()
  61. return Db.Model(&c).Create(&relation).Error
  62. }
  63. }