intelligentLightingDao.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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 string `gorm:"type:varchar(12)" json:"tenantId"` //租户ID
  56. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  57. CreateUser int `gorm:"type:int" json:"createUser"` //新增记录操作用户ID
  58. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  59. UpdateUser int `gorm:"type:int" 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. // CreateDefaultStrategyByLight 创建默认
  66. func (c *IntelligentLight) CreateDefaultStrategyByLight(rid int, relationType int, lightId int) error {
  67. var intelligentLights IntelligentLight
  68. intelligentLights.LightID = lightId
  69. intelligentLights.RelationType = relationType
  70. intelligentLights.Rid = rid
  71. intelligentLights.TenantId = c.TenantId
  72. intelligentLights.CreateTime = time.Now()
  73. intelligentLights.UpdateTime = time.Now()
  74. err := Db.Model(&c).Save(&intelligentLights).Error
  75. return err
  76. }
  77. func (c *IntelligentLight) BatchGet(ids []int) ([]IntelligentLight, error) {
  78. var intelligentLights []IntelligentLight
  79. err := Db.Model(&c).Where("light_id in ? and is_deleted = 0", ids).Find(&intelligentLights).Error
  80. return intelligentLights, err
  81. }
  82. func (c *IntelligentLight) GetByRidAndType() ([]IntelligentLight, error) {
  83. var intelligentLights []IntelligentLight
  84. db := Db.Model(&c).Where("relation_type = ? and is_deleted = 0 and tenant_id = ?",
  85. c.RelationType, c.TenantId)
  86. if c.Rid > 0 {
  87. db = db.Where("rid = ?", c.Rid)
  88. }
  89. err := db.Find(&intelligentLights).Error
  90. return intelligentLights, err
  91. }
  92. func (c *IntelligentLight) GetByGroup2(searchValue string, current, size,
  93. groupId int) ([]LightrelationVo, error) {
  94. var groupRelations []LightrelationVo
  95. where := "lig.tenant_id = ?"
  96. if groupId != 0 {
  97. where += fmt.Sprintf(" AND lig.rid in(%v)", groupId)
  98. }
  99. 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
  100. FROM strategy_intelligent_light lig
  101. LEFT JOIN device_lamp_pole_group gro ON lig.rid=gro.id
  102. LEFT JOIN strategy_light b ON b.id=lig.light_id
  103. WHERE lig.is_deleted=0 AND lig.relation_type=2 AND gro.is_deleted=0
  104. and ` + where + `
  105. ORDER BY lig.create_time desc`
  106. tx := Db.Raw(sql, c.TenantId).Scan(&groupRelations)
  107. return groupRelations, tx.Error
  108. }
  109. func (c *IntelligentLight) GetByGroup(searchValue string, current, size,
  110. groupId int) ([]LightrelationVo, int64, error) {
  111. var groupRelations []LightrelationVo
  112. where := " AND con.tenant_id = ?"
  113. if groupId != 0 {
  114. where += fmt.Sprintf(" AND con.group_id in(%v)", groupId)
  115. }
  116. if searchValue != "" {
  117. where += fmt.Sprintf(" and (con.sn like '%%v%' or con.name like '%$v%')", searchValue)
  118. }
  119. offset := (current - 1) * size
  120. limit := size
  121. sql := `SELECT
  122. lig.*,
  123. con.control_type,
  124. con.id public_id,
  125. con.NAME public_name,
  126. con.sn device_sn,
  127. con.lamp_pole_name,
  128. con.lamp_pole_sn,
  129. con.group_id,
  130. con.lamp_lat,
  131. con.lamp_lng,
  132. con.id as rid,
  133. b.light_name,
  134. b.light_sn,
  135. b.start_time,
  136. b.end_time,
  137. is_all_year,
  138. b.is_automatic_renewal,
  139. con.lamp_pole_location,
  140. con.install_time
  141. FROM
  142. device_light_control con
  143. left JOIN strategy_intelligent_light lig ON con.id = lig.rid
  144. LEFT JOIN strategy_light b ON b.id = lig.light_id
  145. WHERE
  146. con.is_deleted = 0
  147. ` + where + `
  148. ORDER BY
  149. con.name asc `
  150. var count int64
  151. Db.Raw(sql, c.TenantId).Count(&count)
  152. sql += `limit ?,?`
  153. tx := Db.Raw(sql, c.TenantId, offset, limit).Scan(&groupRelations)
  154. return groupRelations, count, tx.Error
  155. }
  156. func (c IntelligentLight) Update() error {
  157. return Db.Model(&c).Where(" id = ? and is_deleted = 0", c.ID).Updates(&c).Error
  158. }
  159. func (c IntelligentLight) Get() (IntelligentLight, error) {
  160. var intelligentLight IntelligentLight
  161. err := Db.Model(&c).Where("is_deleted = 0 and rid = ? and relation_type = ?", c.Rid, c.RelationType).First(&intelligentLight).Error
  162. return intelligentLight, err
  163. }