optoSensoDao.go 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. package dao
  2. import (
  3. "gorm.io/gorm"
  4. "time"
  5. )
  6. //OptoSensor 集控器
  7. type OptoSensor 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. LampPoleId int `gorm:"type:int" json:"lampPoleId"` //灯杆id
  12. LampPoleName string `gorm:"type:varchar(64)" json:"lampPoleName"` //灯杆名称
  13. LampPoleSn string `gorm:"type:varchar(64)" json:"lampPoleSn"` //灯杆编码
  14. LampPoleLocation string `gorm:"type:varchar(255)" json:"lampPoleLocation"` //灯杆安装位置
  15. LampLng float64 `gorm:"type:double(17, 14) " json:"poleLng"` //经度
  16. LampLat float64 `gorm:"type:double(17, 14) " json:"poleLat"` //纬度
  17. BrandId int `gorm:"type:int" json:"brandId"` //设备名称
  18. ModelId int `gorm:"type:int" json:"modelId"` //设备型号
  19. GatewayId int `gorm:"type:int" json:"gatewayId"` //所属网关id
  20. InstallTime *time.Time `gorm:"type:date" json:"installTime"` //安装时间
  21. IPAddress string `gorm:"type:varchar(64)" json:"ipAddress"` //IP地址-备用
  22. IsDefault int `gorm:"type:int;default 0" json:"isDefault"` //是否设为首页默认展示 0=不展示,1=设置展示
  23. TenantId int `gorm:"type:int" json:"tenantId"` //租户ID
  24. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  25. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  26. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  27. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改用户
  28. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  29. Status int `gorm:"type:int" json:"status"` //状态 0=正常,1=异常
  30. Tag string `gorm:"type:varchar(255)" json:"tag"` //标签,保留字段(逗号区分)
  31. }
  32. func (OptoSensor) TableName() string {
  33. return "device_opto_sensor"
  34. }
  35. func (c OptoSensor) Delete() error {
  36. return Db.Debug().Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  37. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  38. }
  39. func (c OptoSensor) IsExistedBySN() bool {
  40. var count int64
  41. _ = Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
  42. c.Sn, c.IsDeleted).Count(&count).Error
  43. return count > 0
  44. }
  45. func (c OptoSensor) IsExistedByNameAndCode() bool {
  46. var devices []Zigbee
  47. err := Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
  48. c.Sn, c.IsDeleted).Find(&devices).Error
  49. //如果查询不到,返回相应的错误
  50. if gorm.ErrRecordNotFound == err {
  51. return false
  52. }
  53. for _, d := range devices {
  54. if d.ID != c.ID {
  55. return true
  56. }
  57. }
  58. return false
  59. }
  60. func (c *OptoSensor) Create() error {
  61. return Db.Debug().Model(&c).Save(&c).Error
  62. }
  63. func (c *OptoSensor) Update() error {
  64. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  65. }
  66. func (c *OptoSensor) GetDevice() error {
  67. err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).Find(&c).Error
  68. return err
  69. }
  70. func (c OptoSensor) GetDevices(offset, limit int) ([]OptoSensor, error) {
  71. var devices []OptoSensor
  72. err := Db.Debug().Model(&c).Where(" name like ? ", "%"+c.Name+"%").Offset(offset).Limit(limit).Find(&devices).Error
  73. return devices, err
  74. }
  75. func (c OptoSensor) GetAllDevices() ([]*OptoSensor, error) {
  76. var devices []*OptoSensor
  77. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  78. return devices, err
  79. }
  80. func (c OptoSensor) GetDevicesByGateway() []OptoSensor {
  81. var devices []OptoSensor
  82. Db.Debug().Model(&c).Where(" gateway_id = ? and is_deleted = 0",
  83. c.GatewayId).Find(&devices)
  84. return devices
  85. }
  86. func (c OptoSensor) GetDevicesByLampPole() []OptoSensor {
  87. var devices []OptoSensor
  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 OptoSensor) GetDevicesByTenantId() []OptoSensor {
  93. var devices []OptoSensor
  94. Db.Debug().Model(&c).Where("tenant_id = ? and is_deleted = 0",
  95. c.TenantId).Find(&devices)
  96. return devices
  97. }
  98. func (c OptoSensor) GetAll() []*OptoSensor {
  99. var devices []*OptoSensor
  100. Db.Debug().Model(&c).Where("is_deleted = 0", c.TenantId,
  101. c.IsDeleted).Find(&devices)
  102. return devices
  103. }
  104. func (c OptoSensor) getList(optoSensor OptoSensor) []OptoSensorVO {
  105. var optoSensorVO []OptoSensorVO
  106. tenantId := optoSensor.TenantId
  107. if tenantId == 0 {
  108. tenantId = c.TenantId
  109. }
  110. optoSensor.TenantId = tenantId
  111. where := ""
  112. if optoSensor.IsDefault == 1 {
  113. where = "and a.is_default=1"
  114. }
  115. Db.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)
  116. return optoSensorVO
  117. }