cameraDao.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package dao
  2. import (
  3. "time"
  4. )
  5. //CameraDevice 网关下挂载的设备, 摄像头
  6. type CameraDevice struct {
  7. ID int `gorm:"primary_key" json:"id"` //编号
  8. DeviceName string `gorm:"type:varchar(64)" json:"deviceName"` //设备名称
  9. DeviceSN string `gorm:"type:varchar(64)" json:"deviceSn"` //设备序列号
  10. CameraType int `gorm:"type:int" json:"cameraType"` //摄像机类型 0=枪机,1=球机
  11. GatewayId int `gorm:"type:int" json:"gatewayId"` //所属网关
  12. LampPoleId int `gorm:"type:int" json:"lampPoleId"` //归属灯杆 灯杆ID
  13. LampPoleName string `gorm:"type:varchar(64)" json:"lampPoleName"` //灯杆名称
  14. LampPoleSn string `gorm:"type:varchar(64)" json:"lampPoleSn"` //灯杆sn
  15. LampPoleLocation string `gorm:"type:varchar(255)" json:"lampPoleLocation"` //灯杆安装位置
  16. LampLat float64 `gorm:"type:double(17,14)" json:"lampLat"` //经度
  17. LampLng float64 `gorm:"type:double(17,14)" json:"lampLng"` //纬度
  18. GroupId int `gorm:"type:int" json:"groupId"` //灯杆分组ID
  19. BrandId int `gorm:"type:int" json:"brandId"` //设备品牌
  20. ModelId int `gorm:"type:int" json:"modelId"` //设备型号
  21. RatedPower float32 `gorm:"type:float(8,2);default 0.00" json:"ratedPower"` //功率
  22. MonitorAddress string `gorm:"type:varchar(255)" json:"monitorAddress"` //监控地址 ip:端口
  23. IPAddress string `gorm:"type:varchar(40)" json:"ipAddress"` //IP地址
  24. InstallTime time.Time `gorm:"type:date" json:"installTime"` //安装时间
  25. TenantId int `gorm:"type:int" json:"tenantId"` //租户ID
  26. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  27. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  28. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  29. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改用户
  30. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  31. Status int `gorm:"type:int" json:"status"` //状态 0=正常,1=异常
  32. Tag string `gorm:"type:varchar(255)" json:"tag"` //标签,(备用,逗号区分)
  33. IsEnable int `gorm:"type:int;default 2" json:"isEnable"` //启用禁用:1启用,2禁用
  34. StreamId string `gorm:"type:varchar(100)" json:"stream_id"` //流id
  35. }
  36. func (CameraDevice) TableName() string {
  37. return "device_camera"
  38. }
  39. func (c CameraDevice) IsExistedBySN() bool {
  40. var count int64
  41. _ = Db.Debug().Model(&c).Where("device_sn = ? and is_deleted = ?",
  42. c.DeviceSN, c.IsDeleted).Count(&count).Error
  43. return count > 0
  44. }
  45. func (c *CameraDevice) Create() error {
  46. return Db.Debug().Model(&c).Save(&c).Error
  47. }
  48. func (c *CameraDevice) Update() error {
  49. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  50. }
  51. func (c *CameraDevice) GetDevice() error {
  52. err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).First(&c).Error
  53. return err
  54. }
  55. func (c CameraDevice) GetDevices(offset, limit int) ([]CameraDevice, error) {
  56. var devices []CameraDevice
  57. db := Db.Debug().Model(&c)
  58. if c.DeviceSN != "" {
  59. db = db.Where("device_name like ? or device_sn like ?", "%"+c.DeviceSN+"%", "%"+c.DeviceSN+"%")
  60. }
  61. if c.CameraType != -1 {
  62. db = db.Where("camera_type = ?", c.CameraType)
  63. }
  64. err := db.Where("is_deleted = 0").Offset(offset).Limit(limit).Find(&devices).Error
  65. return devices, err
  66. }
  67. func (c *CameraDevice) Delete() error {
  68. return Db.Debug().Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  69. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  70. }
  71. func (c CameraDevice) GetAllDevices() ([]*CameraDevice, error) {
  72. var devices []*CameraDevice
  73. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  74. return devices, err
  75. }
  76. func (c *CameraDevice) UpdateEnable() error {
  77. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Updates(map[string]interface{}{"is_enable": c.IsEnable}).Error
  78. }
  79. func (c CameraDevice) GetDevicesByGateway() []CameraDevice {
  80. var devices []CameraDevice
  81. Db.Debug().Model(&c).Where(" gateway_id = ? and is_deleted = 0",
  82. c.GatewayId).Find(&devices)
  83. return devices
  84. }
  85. func (c CameraDevice) GetDevicesByLampPole() []CameraDevice {
  86. var devices []CameraDevice
  87. Db.Debug().Model(&c).Where("lamp_pole_id = ? and is_deleted = 0",
  88. c.LampPoleId).Find(&devices)
  89. return devices
  90. }
  91. func (c CameraDevice) GetDevicesByLampPoleGroup() []CameraDevice {
  92. var devices []CameraDevice
  93. Db.Debug().Model(&c).Where("group_id = ? and is_deleted = 0",
  94. c.GroupId).Find(&devices)
  95. return devices
  96. }