Jelajahi Sumber

照明策略 修复

sixian 2 tahun lalu
induk
melakukan
0c814f176c

+ 2 - 1
app/device/controller/IntelligentLightingStrategy.go

@@ -47,7 +47,7 @@ func (c *intelligentLightingCtl) List(ctx *gin.Context) {
 	size, _ := strconv.Atoi(ctx.Query("size"))
 	gId, err := strconv.Atoi(groupId)
 	if err != nil {
-		ctx.JSON(http.StatusOK, common.ParamsInvalidResponse("groupId invalid", nil))
+		ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, "分组没选 "))
 		return
 	}
 	if current == 0 {
@@ -61,6 +61,7 @@ func (c *intelligentLightingCtl) List(ctx *gin.Context) {
 		ctx.JSON(http.StatusOK, err)
 		return
 	}
+
 	pages := math.Ceil(float64(len(strategies)) / float64(size))
 	rsp := model.RspIntelligentLightList{
 		Current: current,

+ 0 - 1
app/device/service/intelligentLightingService.go

@@ -94,7 +94,6 @@ func (s *intelligentLightingService) List(tenantId int, searchValue string, curr
 		RelationType: model.RelationTypeLampPoleGroup,
 		TenantId:     tenantId,
 	}
-
 	list, err := intelligent.GetByGroup(searchValue, current, size, groupId)
 	if err != nil {
 		return nil, nil