intelligentLightingDao.go 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package dao
  2. import (
  3. "time"
  4. )
  5. type IntelligentLightGroupRelation struct {
  6. IntelligentLight
  7. LightStrategy
  8. LightControl
  9. TimeCondition
  10. }
  11. type IntelligentLight struct {
  12. ID int `gorm:"primary key" json:"id"` //编号
  13. LightID int `gorm:"type:int" json:"lightID"` //照明策略id
  14. RelationType int `gorm:"type:int" json:"relationType"` //关联类型1=灯控,2=灯杆分组
  15. Rid int `gorm:"type:int" json:"rid"` //关联外键ID 根据type类型关联至其表
  16. TenantId int `gorm:"type:int" json:"tenantId"` //租户ID
  17. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  18. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  19. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  20. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改用户
  21. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  22. }
  23. func (IntelligentLight) TableName() string {
  24. return "t_strategy_intelligent_light"
  25. }
  26. func (c *IntelligentLight) BatchGet(ids []int) ([]IntelligentLight, error) {
  27. var intelligentLights []IntelligentLight
  28. err := Db.Debug().Model(&c).Where("light_id in ? and is_deleted = 0", ids).Find(&intelligentLights).Error
  29. return intelligentLights, err
  30. }
  31. func (c *IntelligentLight) GetByRidAndType() ([]IntelligentLight, error) {
  32. var intelligentLights []IntelligentLight
  33. db := Db.Debug().Model(&c).Where("relation_type = ? and is_deleted = 0 and tenant_id = ?",
  34. c.RelationType, c.TenantId)
  35. if c.Rid > 0 {
  36. db = db.Where("rid = ?", c.Rid)
  37. }
  38. err := db.Find(&intelligentLights).Error
  39. return intelligentLights, err
  40. }
  41. func (c *IntelligentLight) GetByGroup(searchValue string, current, size,
  42. groupId int) ([]IntelligentLightGroupRelation, error) {
  43. var groupRelations []IntelligentLightGroupRelation
  44. selectStr := "lig.*,con.id,con.name,b.light_name,t.luminance"
  45. whereStr := "lig.is_deleted = 0 and relation_type = 1 and lig.tenant_id = ? and con.group_id = ?"
  46. whereValue := []interface{}{c.TenantId, groupId}
  47. if searchValue != "" {
  48. whereStr += " and (con.sn like '%?%' or con.name like '%?%')"
  49. whereValue = append(whereValue, searchValue, searchValue)
  50. }
  51. err := Db.Debug().Table("t_strategy_intelligent_light lig").Select(selectStr).
  52. Joins("left join t_dev_light_control con ON lig.rid = con.id").
  53. Joins("left join t_strategy_light b ON b.id = lig.light_id").
  54. Joins("left join t_strategy_time_condition t ON t.light_id = lig.light_id").
  55. Where(whereStr, whereValue...).Offset(current).Limit(size).
  56. Order("lig.create_time desc").Scan(&groupRelations).Error
  57. return groupRelations, err
  58. }