zigbeeDao.go 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package dao
  2. import (
  3. "github.com/jinzhu/gorm"
  4. "time"
  5. )
  6. //Zigbee集控器
  7. type Zigbee struct {
  8. ID int `gorm:"primary_key" json:"id"` //编号
  9. Name string `gorm:"type:varchar(64)" json:"name"` //名称
  10. Sn string `gorm:"type:varchar(60)" json:"sn"` //唯一编码
  11. GroupId int `gorm:"type:int" json:"groupId"` //所属灯杆分组id
  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"` //灯杆编码
  15. LampPoleLocation string `gorm:"type:varchar(255)" json:"lampPoleLocation"` //灯杆安装位置
  16. PoleLng float64 `gorm:"type:double(17, 14)" json:"poleLng"` //经度
  17. PoleLat float64 `gorm:"type:double(17, 14)" json:"poleLat"` //纬度
  18. BrandId int `gorm:"type:int" json:"brandId"` //设备名称
  19. ModelId int `gorm:"type:int" json:"modelId"` //设备型号
  20. GatewayId int `gorm:"type:int" json:"gatewayId"` //所属网关id
  21. GatewayName string `gorm:"type:varchar(64)" json:"gatewayName"` //所属网关名称
  22. GatewaySn string `gorm:"type:varchar(60)" json:"gatewaySn"` //所属网关编码
  23. ChannelNum int `gorm:"type:int" json:"channelNum"` //通道号
  24. NetworkNum int `gorm:"type:int" json:"networkNum"` //网络号
  25. InstallTime *time.Time `gorm:"type:date" json:"installTime"` //安装时间
  26. TenantId int `gorm:"type:int" json:"tenantId"` //租户id
  27. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  28. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  29. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  30. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改用户
  31. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  32. Status int `gorm:"type:int" json:"status"` //状态0=正常 状态0=正常,1=异常
  33. Tag string `gorm:"type:varchar(255)" json:"tag"` //标签,保留字段(逗号区分)
  34. IPAddress string `gorm:"type:varchar(64)" json:"ipAddress"` //IP地址-备用
  35. }
  36. func (Zigbee) TableName() string {
  37. return "device_zigbee"
  38. }
  39. func (c Zigbee) Delete() error {
  40. return Db.Debug().Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  41. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  42. }
  43. func (c Zigbee) IsExistedBySN() bool {
  44. var count = 0
  45. _ = Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
  46. c.Sn, c.IsDeleted).Count(&count).Error
  47. return count > 0
  48. }
  49. func (c Zigbee) IsExistedByNameAndCode() bool {
  50. var devices []Zigbee
  51. err := Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
  52. c.Sn, c.IsDeleted).Find(&devices).Error
  53. //如果查询不到,返回相应的错误
  54. if gorm.IsRecordNotFoundError(err) {
  55. return false
  56. }
  57. for _, d := range devices {
  58. if d.ID != c.ID {
  59. return true
  60. }
  61. }
  62. return false
  63. }
  64. func (c *Zigbee) Create() error {
  65. return Db.Debug().Model(&c).Save(&c).Error
  66. }
  67. func (c *Zigbee) Update() error {
  68. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Update(&c).Error
  69. }
  70. func (c *Zigbee) GetDevice() error {
  71. err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
  72. return err
  73. }
  74. func (c Zigbee) GetDevices(offset, limit int) ([]Zigbee, error) {
  75. var devices []Zigbee
  76. err := Db.Debug().Model(&c).Where(" name like ? ", "%"+c.Name+"%").Offset(offset).Limit(limit).Find(&devices).Error
  77. return devices, err
  78. }
  79. func (c Zigbee) GetAllDevices() ([]Zigbee, error) {
  80. var devices []Zigbee
  81. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  82. return devices, err
  83. }
  84. func (c Zigbee) GetDevicesByGateway() []Zigbee {
  85. var devices []Zigbee
  86. Db.Debug().Model(&c).Where(" gateway_id = ? and is_deleted = 0",
  87. c.GatewayId).Find(&devices)
  88. return devices
  89. }
  90. func (c Zigbee) GetDevicesByLampPole() []Zigbee {
  91. var devices []Zigbee
  92. Db.Debug().Model(&c).Where("lamp_pole_id = ? and is_deleted = 0",
  93. c.LampPoleId).Find(&devices)
  94. return devices
  95. }