ipBroadcastDao.go 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package dao
  2. import (
  3. "gorm.io/gorm"
  4. "iot_manager_service/util/common"
  5. "time"
  6. )
  7. type IpBroadcast struct {
  8. ID int `gorm:"primary_key" json:"id"` //编号
  9. CastName string `gorm:"type:varchar(64)" json:"castName"` //设备名称
  10. CastSn string `gorm:"type:varchar(60)" json:"castSn"` //设备序列号
  11. LampPoleId int `gorm:"type:int" json:"lampPoleId"` //所属灯杆id
  12. LampPoleSn string `gorm:"type:varchar(64)" json:"lampPoleSn"` //所属灯杆sn
  13. GroupId int `gorm:"type:int" json:"groupId"` //灯杆分组ID
  14. GatewayId int `gorm:"type:int" json:"gatewayId"` //所属网关id
  15. GatewaySn string `gorm:"type:varchar(64)" json:"gatewaySn"` //所属网关sn
  16. BrandId int `gorm:"type:int" json:"brandId"` //设备名称
  17. ModelId int `gorm:"type:int" json:"modelId"` //设备型号
  18. RatedPower float32 `gorm:"type:float(8, 2); default 0.00" json:"ratedPower"` //额定功率(LED灯)
  19. IPAddress string `gorm:"type:varchar(50)" json:"ipAddress"` //IP地址
  20. ServiceIpAddress string `gorm:"type:varchar(50)" json:"serviceIpAddress"` //服务IP地址
  21. ServerPort int `gorm:"type:int" json:"serverPort"` //服务端口
  22. SoundVolume int `gorm:"type:int" json:"soundVolume"` //音量0-100换算
  23. InstallTime common.Time `gorm:"type:date" json:"installTime"` //安装时间
  24. TenantId int `gorm:"type:int" json:"tenantId"` //租户ID
  25. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  26. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  27. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  28. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改用户
  29. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  30. }
  31. func (IpBroadcast) TableName() string {
  32. return "device_ip_broadcast"
  33. }
  34. func (c IpBroadcast) Delete() error {
  35. return Db.Debug().Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  36. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  37. }
  38. func (c IpBroadcast) IsExistedBySN() bool {
  39. var count int64
  40. _ = Db.Debug().Model(&c).Where(" cast_sn = ? and is_deleted = ?",
  41. c.CastSn, c.IsDeleted).Count(&count).Error
  42. return count > 0
  43. }
  44. func (c IpBroadcast) IsExistedByNameAndCode() bool {
  45. var devices []IpBroadcast
  46. err := Db.Debug().Model(&c).Where(" cast_sn = ? and is_deleted = ?",
  47. c.CastSn, c.IsDeleted).Find(&devices).Error
  48. //如果查询不到,返回相应的错误
  49. if gorm.ErrRecordNotFound == err {
  50. return false
  51. }
  52. for _, d := range devices {
  53. if d.ID != c.ID {
  54. return true
  55. }
  56. }
  57. return false
  58. }
  59. func (c *IpBroadcast) Create() error {
  60. return Db.Debug().Model(&c).Save(&c).Error
  61. }
  62. func (c *IpBroadcast) Update() error {
  63. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  64. }
  65. func (c *IpBroadcast) GetDevice() error {
  66. err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
  67. return err
  68. }
  69. func (c IpBroadcast) GetDevices(offset, limit int) ([]IpBroadcast, error) {
  70. var devices []IpBroadcast
  71. err := Db.Debug().Model(&c).Where("is_deleted = 0 and cast_name like ? ", "%"+c.CastName+"%").Offset(offset).Limit(limit).Find(&devices).Error
  72. return devices, err
  73. }
  74. func (c IpBroadcast) GetAllDevices() ([]IpBroadcast, error) {
  75. var devices []IpBroadcast
  76. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId,
  77. c.IsDeleted).Scan(&devices).Error
  78. return devices, err
  79. }
  80. func (c IpBroadcast) GetDevicesByGateway() []IpBroadcast {
  81. var devices []IpBroadcast
  82. Db.Debug().Model(&c).Where(" gateway_id = ? and is_deleted = 0",
  83. c.GatewayId).Find(&devices)
  84. return devices
  85. }
  86. func (c IpBroadcast) GetDevicesByLampPole() []IpBroadcast {
  87. var devices []IpBroadcast
  88. Db.Debug().Model(&c).Where("lamp_pole_id = ? and is_deleted = 0",
  89. c.LampPoleId).Find(&devices)
  90. return devices
  91. }
  92. func (c IpBroadcast) GetAll() []IpBroadcast {
  93. var devices []IpBroadcast
  94. Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId,
  95. c.IsDeleted).Scan(&devices)
  96. return devices
  97. }