intelligentLightingDao.go 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. package dao
  2. import (
  3. "fmt"
  4. "time"
  5. )
  6. type LightrelationVo struct {
  7. ID int `json:"id"`
  8. LightID int `json:"lightId"`
  9. RelationType int `json:"relationType"`
  10. Rid int `json:"rid"`
  11. CreateTime string `json:"createTime"`
  12. CreateUser string `json:"createUser"`
  13. UpdateTime string `json:"updateTime"`
  14. UpdateUser string `json:"updateUser"`
  15. IsDeleted int `json:"isDeleted"`
  16. TenantID string `json:"tenantId"`
  17. IsAutomaticRenewal int `json:"isAutomaticRenewal"`
  18. EffectiveDate string `json:"effectiveDate"`
  19. EndTime string `json:"endTime"`
  20. DeviceSn string `json:"deviceSn"`
  21. Location string `json:"location"`
  22. LightControlState string `json:"lightControlState"`
  23. IsShowOpts bool `json:"isShowOpts"`
  24. PublicID int `json:"publicId"`
  25. CombinationStrList []interface{} `gorm:"-" json:"combinationStrList"`
  26. RunState string `json:"runState"`
  27. Children *[]LightrelationVo `gorm:"-" json:"children"`
  28. GroupID int `json:"groupId"`
  29. LampPoleSn string `json:"lampPoleSn"`
  30. LightName string `json:"lightName"`
  31. ControlType int `json:"controlType"`
  32. InstallTime string `json:"installTime"`
  33. LampPoleName string `json:"lampPoleName"`
  34. IsAllYear int `json:"isAllYear"`
  35. PublicName string `json:"publicName"`
  36. StartTime string `json:"startTime"`
  37. LightSn string `json:"lightSn"`
  38. HandSwitch int `json:"handSwitch"`
  39. CombinationStr string `json:"combinationStr"`
  40. LampLng float64 `json:"lampLng"`
  41. LampLat float64 `json:"lampLat"`
  42. }
  43. type IntelligentLightGroupRelation struct {
  44. IntelligentLight
  45. LightStrategy
  46. LightControl
  47. TimeCondition
  48. PublicName string `gorm:"_" json:"publicName"`
  49. }
  50. type IntelligentLight struct {
  51. ID int `gorm:"primary key" json:"id"` //编号
  52. LightID int `gorm:"type:int" json:"lightID"` //照明策略id
  53. RelationType int `gorm:"type:int" json:"relationType"` //关联类型1=灯控,2=灯杆分组
  54. Rid int `gorm:"type:int" json:"rid"` //关联外键ID 根据type类型关联至其表
  55. TenantId int `gorm:"type:int" json:"tenantId"` //租户ID
  56. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  57. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  58. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  59. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改用户
  60. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  61. }
  62. func (IntelligentLight) TableName() string {
  63. return "strategy_intelligent_light"
  64. }
  65. func (c *IntelligentLight) BatchGet(ids []int) ([]IntelligentLight, error) {
  66. var intelligentLights []IntelligentLight
  67. err := Db.Debug().Model(&c).Where("light_id in ? and is_deleted = 0", ids).Find(&intelligentLights).Error
  68. return intelligentLights, err
  69. }
  70. func (c *IntelligentLight) GetByRidAndType() ([]IntelligentLight, error) {
  71. var intelligentLights []IntelligentLight
  72. db := Db.Debug().Model(&c).Where("relation_type = ? and is_deleted = 0 and tenant_id = ?",
  73. c.RelationType, c.TenantId)
  74. if c.Rid > 0 {
  75. db = db.Where("rid = ?", c.Rid)
  76. }
  77. err := db.Find(&intelligentLights).Error
  78. return intelligentLights, err
  79. }
  80. func (c *IntelligentLight) GetByGroup2(searchValue string, current, size,
  81. groupId int) ([]LightrelationVo, error) {
  82. var groupRelations []LightrelationVo
  83. where := "lig.tenant_id = ?"
  84. if groupId != 0 {
  85. where += fmt.Sprintf(" AND lig.rid in(%v)", groupId)
  86. }
  87. sql := `SELECT lig.*,gro.id public_id,gro.pole_group_name public_name,b.light_name,b.light_sn,b.start_time,b.end_time,b.is_all_year,b.is_automatic_renewal
  88. FROM strategy_intelligent_light lig
  89. LEFT JOIN device_lamp_pole_group gro ON lig.rid=gro.id
  90. LEFT JOIN strategy_light b ON b.id=lig.light_id
  91. WHERE lig.is_deleted=0 AND lig.relation_type=2 AND gro.is_deleted=0
  92. and ` + where + `
  93. ORDER BY lig.create_time desc`
  94. tx := Db.Debug().Raw(sql, c.TenantId).Scan(&groupRelations)
  95. return groupRelations, tx.Error
  96. }
  97. func (c *IntelligentLight) GetByGroup(searchValue string, current, size,
  98. groupId int) ([]LightrelationVo, error) {
  99. var groupRelations []LightrelationVo
  100. where := " AND con.tenant_id = ?"
  101. if groupId != 0 {
  102. where += fmt.Sprintf(" AND con.group_id in(%v)", groupId)
  103. }
  104. if searchValue != "" {
  105. where += fmt.Sprintf(" and (con.sn like '%%v%' or con.name like '%$v%')", searchValue)
  106. }
  107. sql := `SELECT
  108. lig.*,
  109. con.control_type,
  110. con.id public_id,
  111. con.NAME public_name,
  112. con.sn device_sn,
  113. con.lamp_pole_name,
  114. con.lamp_pole_sn,
  115. con.group_id,
  116. con.lamp_lat,
  117. con.lamp_lng,
  118. con.id as rid,
  119. b.light_name,
  120. b.light_sn,
  121. b.start_time,
  122. b.end_time,
  123. is_all_year,
  124. b.is_automatic_renewal,
  125. con.lamp_pole_location,
  126. con.install_time
  127. FROM
  128. device_light_control con
  129. left JOIN strategy_intelligent_light lig ON con.id = lig.rid
  130. LEFT JOIN strategy_light b ON b.id = lig.light_id
  131. WHERE
  132. con.is_deleted = 0
  133. ` + where + `
  134. ORDER BY
  135. con.create_time asc`
  136. tx := Db.Debug().Raw(sql, c.TenantId).Scan(&groupRelations)
  137. return groupRelations, tx.Error
  138. }
  139. func (c IntelligentLight) Update() error {
  140. return Db.Debug().Model(&c).Where(" id = ? and is_deleted = 0", c.ID).Updates(&c).Error
  141. }
  142. func (c IntelligentLight) Get() (IntelligentLight, error) {
  143. var intelligentLight IntelligentLight
  144. err := Db.Debug().Model(&c).Where("is_deleted = 0 and rid = ? and relation_type = ?", c.Rid, c.RelationType).First(&intelligentLight).Error
  145. return intelligentLight, err
  146. }