optoSensoDao.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. package dao
  2. import (
  3. "gorm.io/gorm"
  4. "iot_manager_service/util/common"
  5. "time"
  6. )
  7. //OptoSensor 集控器
  8. type OptoSensor struct {
  9. ID int `gorm:"primary_key" json:"id"` //编号
  10. Name string `gorm:"type:varchar(64)" json:"name"` //名称
  11. Sn string `gorm:"type:varchar(60)" json:"sn"` //唯一编码
  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. LampLng float64 `gorm:"type:double(17, 14) " json:"lampLng"` //经度
  17. LampLat float64 `gorm:"type:double(17, 14) " json:"lampLat"` //纬度
  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. InstallTime common.Time `gorm:"type:date" json:"installTime"` //安装时间
  22. IPAddress string `gorm:"type:varchar(64)" json:"ipAddress"` //IP地址-备用
  23. IsDefault int `gorm:"type:int;default 0" json:"isDefault"` //是否设为首页默认展示 0=不展示,1=设置展示
  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. Status int `gorm:"type:int" json:"status"` //状态 0=正常,1=异常
  31. Tag string `gorm:"type:varchar(255)" json:"tag"` //标签,保留字段(逗号区分)
  32. }
  33. func (OptoSensor) TableName() string {
  34. return "device_opto_sensor"
  35. }
  36. func (c OptoSensor) Delete() error {
  37. return Db.Debug().Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  38. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  39. }
  40. func (c OptoSensor) IsExistedBySN() bool {
  41. var count int64
  42. _ = Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
  43. c.Sn, c.IsDeleted).Count(&count).Error
  44. return count > 0
  45. }
  46. func (c OptoSensor) IsExistedByNameAndCode() bool {
  47. var devices []Zigbee
  48. err := Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
  49. c.Sn, c.IsDeleted).Find(&devices).Error
  50. //如果查询不到,返回相应的错误
  51. if gorm.ErrRecordNotFound == err {
  52. return false
  53. }
  54. for _, d := range devices {
  55. if d.ID != c.ID {
  56. return true
  57. }
  58. }
  59. return false
  60. }
  61. func (c *OptoSensor) Create() error {
  62. return Db.Debug().Model(&c).Save(&c).Error
  63. }
  64. func (c *OptoSensor) Update() error {
  65. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  66. }
  67. func (c *OptoSensor) GetDevice() error {
  68. err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).Find(&c).Error
  69. return err
  70. }
  71. func (c OptoSensor) GetDevices(offset, limit int) ([]OptoSensor, int64, error) {
  72. var devices []OptoSensor
  73. var count int64
  74. db := Db.Debug().Model(&c).Where("is_deleted=0 and name like ? ", "%"+c.Name+"%")
  75. db.Count(&count)
  76. err := db.Offset(offset).Limit(limit).Find(&devices).Error
  77. return devices, count, err
  78. }
  79. func (c OptoSensor) GetAllDevices() ([]*OptoSensor, error) {
  80. var devices []*OptoSensor
  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 OptoSensor) GetDevicesByGateway() []OptoSensor {
  85. var devices []OptoSensor
  86. Db.Debug().Model(&c).Where(" gateway_id = ? and is_deleted = 0",
  87. c.GatewayId).Find(&devices)
  88. return devices
  89. }
  90. func (c OptoSensor) GetDevicesByLampPole() []OptoSensor {
  91. var devices []OptoSensor
  92. Db.Debug().Model(&c).Where("lamp_pole_id = ? and is_deleted = 0",
  93. c.LampPoleId).Find(&devices)
  94. return devices
  95. }
  96. func (c OptoSensor) GetDevicesByTenantId() []OptoSensor {
  97. var devices []OptoSensor
  98. Db.Debug().Model(&c).Where("tenant_id = ? and is_deleted = 0",
  99. c.TenantId).Find(&devices)
  100. return devices
  101. }
  102. func (c OptoSensor) GetAll() []*OptoSensor {
  103. var devices []*OptoSensor
  104. Db.Debug().Model(&c).Where("is_deleted = 0").Find(&devices)
  105. return devices
  106. }
  107. func (c OptoSensor) getList(optoSensor OptoSensor) []OptoSensorVO {
  108. var optoSensorVO []OptoSensorVO
  109. tenantId := optoSensor.TenantId
  110. if tenantId == 0 {
  111. tenantId = c.TenantId
  112. }
  113. optoSensor.TenantId = tenantId
  114. where := ""
  115. if optoSensor.IsDefault == 1 {
  116. where = "and a.is_default=1"
  117. }
  118. Db.Model(&c).Debug().Raw("SELECT a.*, v3.id brand, v4.id model, lamp.district_name FROM device_opto_sensor a LEFT JOIN device_vendor v3 ON v3.id = a.brand_id LEFT JOIN device_vendor v4 ON v4.id = a.model_id LEFT JOIN device_lamp_pole lamp ON lamp.id = a.lamp_pole_id WHERE a.is_deleted = 0 " + where).Scan(&optoSensorVO)
  119. return optoSensorVO
  120. }