optoSensoDao.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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:"poleLng"` //经度
  17. LampLat 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. 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, error) {
  72. var devices []OptoSensor
  73. err := Db.Debug().Model(&c).Where("is_deleted=0 and name like ? ", "%"+c.Name+"%").Offset(offset).Limit(limit).Find(&devices).Error
  74. return devices, err
  75. }
  76. func (c OptoSensor) GetAllDevices() ([]*OptoSensor, error) {
  77. var devices []*OptoSensor
  78. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  79. return devices, err
  80. }
  81. func (c OptoSensor) GetDevicesByGateway() []OptoSensor {
  82. var devices []OptoSensor
  83. Db.Debug().Model(&c).Where(" gateway_id = ? and is_deleted = 0",
  84. c.GatewayId).Find(&devices)
  85. return devices
  86. }
  87. func (c OptoSensor) GetDevicesByLampPole() []OptoSensor {
  88. var devices []OptoSensor
  89. Db.Debug().Model(&c).Where("lamp_pole_id = ? and is_deleted = 0",
  90. c.LampPoleId).Find(&devices)
  91. return devices
  92. }
  93. func (c OptoSensor) GetDevicesByTenantId() []OptoSensor {
  94. var devices []OptoSensor
  95. Db.Debug().Model(&c).Where("tenant_id = ? and is_deleted = 0",
  96. c.TenantId).Find(&devices)
  97. return devices
  98. }
  99. func (c OptoSensor) GetAll() []*OptoSensor {
  100. var devices []*OptoSensor
  101. Db.Debug().Model(&c).Where("is_deleted = 0", c.TenantId,
  102. c.IsDeleted).Find(&devices)
  103. return devices
  104. }
  105. func (c OptoSensor) getList(optoSensor OptoSensor) []OptoSensorVO {
  106. var optoSensorVO []OptoSensorVO
  107. tenantId := optoSensor.TenantId
  108. if tenantId == 0 {
  109. tenantId = c.TenantId
  110. }
  111. optoSensor.TenantId = tenantId
  112. where := ""
  113. if optoSensor.IsDefault == 1 {
  114. where = "and a.is_default=1"
  115. }
  116. 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)
  117. return optoSensorVO
  118. }