gatewayRelationDao.go 3.8 KB

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