|
@@ -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)
|
|
|
+ }
|
|
|
}
|