|
@@ -16,7 +16,7 @@ var IntelligentLightingService = new(intelligentLightingService)
|
|
|
|
|
|
type intelligentLightingService struct{}
|
|
|
|
|
|
-func (s *intelligentLightingService) GetDetailByLight(tenantId, id int, reqType int) (model.RspIntelligentLightDetail,
|
|
|
+func (s *intelligentLightingService) GetDetailByLight(tenantId string, id int, reqType int) (model.RspIntelligentLightDetail,
|
|
|
*common.Errors) {
|
|
|
detail := model.RspIntelligentLightDetail{}
|
|
|
if reqType == 2 {
|
|
@@ -48,7 +48,7 @@ func (s *intelligentLightingService) GetDetailByLight(tenantId, id int, reqType
|
|
|
return detail, nil
|
|
|
}
|
|
|
|
|
|
-func (s *intelligentLightingService) GetLightRelation(tenantId, rId, relationType int) model.IntelligentLightSimple {
|
|
|
+func (s *intelligentLightingService) GetLightRelation(tenantId string, rId, relationType int) model.IntelligentLightSimple {
|
|
|
detail := model.IntelligentLightSimple{}
|
|
|
|
|
|
// 获取照明策略关联
|
|
@@ -109,7 +109,7 @@ func (s *intelligentLightingService) BatchGet(ids []int) []dao.IntelligentLight
|
|
|
return intelligentLights
|
|
|
}
|
|
|
|
|
|
-func (s *intelligentLightingService) List(tenantId int, searchValue string, current, size,
|
|
|
+func (s *intelligentLightingService) List(tenantId string, searchValue string, current, size,
|
|
|
groupId int) ([]dao.LightrelationVo, int64, error) {
|
|
|
var result []dao.LightrelationVo
|
|
|
//获取策略关联信息
|
|
@@ -158,7 +158,7 @@ func (s *intelligentLightingService) List(tenantId int, searchValue string, curr
|
|
|
}
|
|
|
|
|
|
// Relation 保存策略
|
|
|
-func (s *intelligentLightingService) Relation(userId int64, tenantId int, publicId int, lightId int, relationType int) error {
|
|
|
+func (s *intelligentLightingService) Relation(userId int64, tenantId string, publicId int, lightId int, relationType int) error {
|
|
|
intelligent := &dao.IntelligentLight{
|
|
|
LightID: lightId,
|
|
|
Rid: publicId,
|
|
@@ -183,7 +183,7 @@ func (s *intelligentLightingService) Relation(userId int64, tenantId int, public
|
|
|
}
|
|
|
|
|
|
// Recovery 恢复到分组
|
|
|
-func (s *intelligentLightingService) Recovery(userId int64, tenantId int, groupId int, id int) error {
|
|
|
+func (s *intelligentLightingService) Recovery(userId int64, tenantId string, groupId int, id int) error {
|
|
|
//1.IntelligentLight查出 `relation_type` = '2' AND `rid` = '67' 查出组中的 light_id
|
|
|
//2.IntelligentLight保存 上面 的light_id 到 id中
|
|
|
intelligent := &dao.IntelligentLight{
|
|
@@ -208,7 +208,7 @@ func (s *intelligentLightingService) Recovery(userId int64, tenantId int, groupI
|
|
|
}
|
|
|
|
|
|
// ChangeHandSwitch 开灯控制
|
|
|
-func (s *intelligentLightingService) ChangeHandSwitch(userId int64, tenantId int, handSwitch int, handType int, publicId int, handTime int, luminance int, explain string, name string) error {
|
|
|
+func (s *intelligentLightingService) ChangeHandSwitch(userId int64, tenantId string, handSwitch int, handType int, publicId int, handTime int, luminance int, explain string, name string) error {
|
|
|
light, err := s.GetDetailByLight(tenantId, publicId, handType)
|
|
|
if err != nil {
|
|
|
panic(err)
|
|
@@ -222,7 +222,7 @@ func (s *intelligentLightingService) ChangeHandSwitch(userId int64, tenantId int
|
|
|
// 这里要调用云端 操作灯控
|
|
|
var forLightControlReq edge_service.ForLightControlReq
|
|
|
forLightControlReq.Codes = sn
|
|
|
- forLightControlReq.Tenant = strconv.Itoa(tenantId)
|
|
|
+ forLightControlReq.Tenant = tenantId
|
|
|
forLightControlReq.Recovery = handTime
|
|
|
forLightControlReq.Brightness = luminance
|
|
|
str := "灯控"
|