瀏覽代碼

网关关联

sixian 2 年之前
父節點
當前提交
1ef2814414
共有 2 個文件被更改,包括 21 次插入19 次删除
  1. 18 18
      app/device/dao/gatewayRelationDao.go
  2. 3 1
      app/device/service/gatewayService.go

+ 18 - 18
app/device/dao/gatewayRelationDao.go

@@ -50,24 +50,24 @@ func (c *GatewayRelation) Update(gatewayId int64) error {
 	//sql = strings.ReplaceAll(sql, "@id", string(gatewayId))
 	//fmt.Printf("sql = %v", sql)
 	//Db.Model(&c).Debug().Exec(sql, gatewayId, gatewayId, gatewayId, gatewayId, gatewayId, gatewayId, gatewayId, gatewayId, gatewayId).Scan(&relation)
-	Db.Model(&c).Debug().Exec(sql).Scan(&relation)
+	Db.Debug().Model(&c).Exec(sql).Scan(&relation)
 	fmt.Printf("relation1 = %v", relation)
 	return nil
-	relation.Total = relation.CameraCount + relation.LightControlCount + relation.InfoBoardCount +
-		relation.OptoSensorCount + relation.ZigbeeCount + relation.AlarmTerminalCount +
-		relation.CaptureUnitCount + relation.IpBroadcastCount + relation.CurveSensorCount
-	fmt.Printf("relation2 = %v", relation)
-	//return nil
-	var count int64
-	_ = Db.Debug().Model(&c).Where(" id = ? ", gatewayId).Count(&count)
-	fmt.Printf("count = %v", count)
-	if count > 0 {
-		relation.UpdateTime = time.Now()
-		return Db.Debug().Model(&c).Where(" id = ? ", gatewayId).Updates(&relation).Error
-	} else {
-		relation.ID = int(gatewayId)
-		relation.UpdateTime = time.Now()
-		relation.CreateTime = time.Now()
-		return Db.Debug().Model(&c).Create(&relation).Error
-	}
+	//relation.Total = relation.CameraCount + relation.LightControlCount + relation.InfoBoardCount +
+	//	relation.OptoSensorCount + relation.ZigbeeCount + relation.AlarmTerminalCount +
+	//	relation.CaptureUnitCount + relation.IpBroadcastCount + relation.CurveSensorCount
+	//fmt.Printf("relation2 = %v", relation)
+	////return nil
+	//var count int64
+	//_ = Db.Debug().Model(&c).Where(" id = ? ", gatewayId).Count(&count)
+	//fmt.Printf("count = %v", count)
+	//if count > 0 {
+	//	relation.UpdateTime = time.Now()
+	//	return Db.Debug().Model(&c).Where(" id = ? ", gatewayId).Updates(&relation).Error
+	//} else {
+	//	relation.ID = int(gatewayId)
+	//	relation.UpdateTime = time.Now()
+	//	relation.CreateTime = time.Now()
+	//	return Db.Debug().Model(&c).Create(&relation).Error
+	//}
 }

+ 3 - 1
app/device/service/gatewayService.go

@@ -108,7 +108,9 @@ func (s *gatewayService) List(searchValue string, current, size int) ([]model.Ga
 
 		fmt.Printf("d.ID = %v", d.ID)
 		//查数据
-		relation2 := dao.GatewayRelation{}
+		relation2 := dao.GatewayRelation{
+			id
+		}
 		relation2.Update(int64(d.ID)) //临时 处理
 
 		if relation != nil {