Ver Fonte

控制相关新增

hxz há 2 anos atrás
pai
commit
c5e0db2d52

+ 29 - 0
app/device/controller/controllerIntelligentLighting.go

@@ -0,0 +1,29 @@
+package controller
+
+import "github.com/gin-gonic/gin"
+
+var IntelligentLighting = new(intelligentLightingCtl)
+
+type intelligentLightingCtl struct{}
+
+func (c *intelligentLightingCtl) Detail(ctx *gin.Context) {
+
+}
+func (c *intelligentLightingCtl) List(ctx *gin.Context) {
+
+}
+func (c *intelligentLightingCtl) RelationList(ctx *gin.Context) {
+
+}
+func (c *intelligentLightingCtl) Relation(ctx *gin.Context) {
+
+}
+func (c *intelligentLightingCtl) Remove(ctx *gin.Context) {
+
+}
+func (c *intelligentLightingCtl) ChangeHandSwitch(ctx *gin.Context) {
+
+}
+func (c *intelligentLightingCtl) GetStatus(ctx *gin.Context) {
+
+}

+ 20 - 0
app/device/controller/controllerLight.go

@@ -0,0 +1,20 @@
+package controller
+
+import "github.com/gin-gonic/gin"
+
+var CLight = new(clightCtl)
+
+type clightCtl struct{}
+
+func (c *clightCtl) Detail(ctx *gin.Context) {
+
+}
+func (c *clightCtl) List(ctx *gin.Context) {
+
+}
+func (c *clightCtl) Submit(ctx *gin.Context) {
+
+}
+func (c *clightCtl) Remove(ctx *gin.Context) {
+
+}

+ 26 - 0
app/device/controller/controllerLightRelation.go

@@ -0,0 +1,26 @@
+package controller
+
+import "github.com/gin-gonic/gin"
+
+var LightRelation = new(lightRelationCtl)
+
+type lightRelationCtl struct{}
+
+func (c *lightRelationCtl) Detail(ctx *gin.Context) {
+
+}
+func (c *lightRelationCtl) List(ctx *gin.Context) {
+
+}
+func (c *lightRelationCtl) Remove(ctx *gin.Context) {
+
+}
+func (c *lightRelationCtl) RelationList(ctx *gin.Context) {
+
+}
+func (c *lightRelationCtl) Relation(ctx *gin.Context) {
+
+}
+func (c *lightRelationCtl) ChangeHandSwitch(ctx *gin.Context) {
+
+}

+ 20 - 0
app/device/controller/controllerOnDemandLightingControl.go

@@ -0,0 +1,20 @@
+package controller
+
+import "github.com/gin-gonic/gin"
+
+var OnDemandLightingControl = new(onDemandLightingControlCtl)
+
+type onDemandLightingControlCtl struct{}
+
+func (c *onDemandLightingControlCtl) Detail(ctx *gin.Context) {
+
+}
+func (c *onDemandLightingControlCtl) List(ctx *gin.Context) {
+
+}
+func (c *onDemandLightingControlCtl) Relation(ctx *gin.Context) {
+
+}
+func (c *onDemandLightingControlCtl) ChangeHandSwitch(ctx *gin.Context) {
+
+}

+ 38 - 7
router/router.go

@@ -194,13 +194,6 @@ func InitRouter(engine *gin.Engine) {
 		lightControl.POST("/off-one", controller.Light.Switch) //todo 在strategy中
 	}
 
-	strategy := device.Group("/api/longchi/strategy")
-	lightrelation := strategy.Group("lightrelation")
-	{
-		lightrelation.POST("/changeHandSwitch", controller.Light.ChangeHandSwitch)
-	}
-
-	//井盖基本信息 控制器
 	manholeCover := device.Group("manholecover")
 	{
 		manholeCover.GET("/detail", controller.ManholeCover.Detail)
@@ -301,4 +294,42 @@ func InitRouter(engine *gin.Engine) {
 		zigbee.GET("/export-excel", controller.Zigbee.ExportExcel)
 		zigbee.GET("/export-template", controller.Zigbee.ExportTemplate)
 	}
+	strategy := device.Group("/api/longchi/strategy")
+	//智能照明(灯杆分组/灯控树) 控制器
+	intelligentLighting := strategy.Group("IntelligentLighting")
+	{
+		intelligentLighting.GET("/detail", controller.IntelligentLighting.Detail)
+		intelligentLighting.GET("/list", controller.IntelligentLighting.List)
+		intelligentLighting.POST("/relationList", controller.IntelligentLighting.RelationList)
+		intelligentLighting.POST("/relation", controller.IntelligentLighting.Relation)
+		intelligentLighting.POST("/remove", controller.IntelligentLighting.Remove)
+		intelligentLighting.POST("/changHandSwitch", controller.IntelligentLighting.ChangeHandSwitch)
+		intelligentLighting.POST("/get_status", controller.IntelligentLighting.GetStatus)
+	}
+	//照明策略 控制器
+	clight := strategy.Group("light")
+	{
+		clight.GET("/detail", controller.CLight.Detail)
+		clight.GET("/list", controller.CLight.List)
+		clight.POST("/submit", controller.CLight.Submit)
+		clight.POST("/remove", controller.CLight.Remove)
+	}
+	//照明策略略关联(灯杆分组/灯控树形态) 控制器(作废)
+	lightRelation := strategy.Group("lightrelation")
+	{
+		lightRelation.GET("/detail", controller.LightRelation.Detail)
+		lightRelation.GET("/list", controller.LightRelation.List)
+		lightRelation.POST("/remove", controller.LightRelation.Remove)
+		lightRelation.POST("/relationList", controller.LightRelation.RelationList)
+		lightRelation.POST("/relation", controller.LightRelation.Relation)
+		lightRelation.POST("/changeHandSwitch", controller.LightRelation.ChangeHandSwitch)
+	}
+	//灯随车走照明控制 控制器
+	onDemandLightingControl := strategy.Group("onDemandLightingControl")
+	{
+		onDemandLightingControl.GET("/detail", controller.OnDemandLightingControl.Detail)
+		onDemandLightingControl.GET("/list", controller.OnDemandLightingControl.List)
+		onDemandLightingControl.POST("/relation", controller.OnDemandLightingControl.Relation)
+		onDemandLightingControl.POST("/changHandSwitch", controller.OnDemandLightingControl.ChangeHandSwitch)
+	}
 }