ipBroadcastDao.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 string `gorm:"type:varchar(12)" 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, int64, error) {
  70. var devices []IpBroadcast
  71. var count int64
  72. db := Db.Debug().Model(&c).Where("is_deleted = 0 and cast_name like ? ", "%"+c.CastName+"%")
  73. db.Count(&count)
  74. err := db.Offset(offset).Limit(limit).Find(&devices).Error
  75. return devices, count, err
  76. }
  77. func (c IpBroadcast) GetAllDevices() ([]IpBroadcast, error) {
  78. var devices []IpBroadcast
  79. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId,
  80. c.IsDeleted).Scan(&devices).Error
  81. return devices, err
  82. }
  83. func (c IpBroadcast) GetDevicesByGateway() []IpBroadcast {
  84. var devices []IpBroadcast
  85. Db.Debug().Model(&c).Where(" gateway_id = ? and is_deleted = 0",
  86. c.GatewayId).Find(&devices)
  87. return devices
  88. }
  89. func (c IpBroadcast) GetDevicesByLampPole() []IpBroadcast {
  90. var devices []IpBroadcast
  91. Db.Debug().Model(&c).Where("lamp_pole_id = ? and is_deleted = 0",
  92. c.LampPoleId).Find(&devices)
  93. return devices
  94. }
  95. func (c IpBroadcast) GetAll() []IpBroadcast {
  96. var devices []IpBroadcast
  97. Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId,
  98. c.IsDeleted).Scan(&devices)
  99. return devices
  100. }
  101. func (c IpBroadcast) GetByIds(ids string) []IpBroadcast {
  102. var devices []IpBroadcast
  103. Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ?", c.TenantId,
  104. c.IsDeleted).Where("id in (" + ids + ")").Scan(&devices)
  105. return devices
  106. }