router.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. package router
  2. import (
  3. "github.com/gin-gonic/gin"
  4. device "iot_manager_service/app/device/controller"
  5. "iot_manager_service/app/middleware"
  6. record "iot_manager_service/app/record/controller"
  7. security "iot_manager_service/app/security/controller"
  8. system "iot_manager_service/app/system/controller"
  9. "iot_manager_service/util/logger"
  10. )
  11. func InitRouter(engine *gin.Engine) {
  12. // 跨域处理
  13. engine.Use(middleware.Cors())
  14. // 校验权限
  15. engine.Use(middleware.CheckAuth())
  16. engine.Use(gin.Recovery())
  17. engine.Use(logger.LogToFile())
  18. engine.Use(logger.Recover)
  19. // 操作历史记录
  20. handleHistory := engine.Group("/api/longchi/handlehistory")
  21. {
  22. handleHistory.GET("/list", device.HandleHistory.List)
  23. }
  24. // 设备管理
  25. deviceMgr := engine.Group("/api/longchi/device/")
  26. //设备模型
  27. vendor := deviceMgr.Group("vender")
  28. {
  29. vendor.GET("/getModelList", device.Util.GetModelList)
  30. vendor.GET("/getTypeList", device.Util.GetModelList)
  31. }
  32. //公共方法
  33. share := engine.Group("/api/longchi/share")
  34. {
  35. share.GET("/tenantcode/getTenantCode", device.Util.GetTenantCode)
  36. }
  37. //桥梁
  38. bridge := deviceMgr.Group("bridge")
  39. {
  40. bridge.GET("/detail", device.Bridge.Detail)
  41. bridge.GET("/list", device.Bridge.List)
  42. bridge.POST("/submit", device.Bridge.CreateOrUpdate)
  43. bridge.POST("/remove", device.Bridge.Remove)
  44. bridge.GET("/dropdown", device.Bridge.GetList)
  45. bridge.POST("/import-excel", device.Bridge.ImportExcel)
  46. bridge.GET("/export-excel", device.Bridge.ExportExcel)
  47. bridge.GET("/export-template", device.Bridge.ExportTemplate)
  48. }
  49. //桥梁传感器 控制器
  50. bridgeSensor := deviceMgr.Group("bridgesensor")
  51. {
  52. bridgeSensor.GET("/detail", device.BridgeSensor.Detail)
  53. bridgeSensor.GET("/list", device.BridgeSensor.List)
  54. bridgeSensor.POST("/submit", device.BridgeSensor.CreateOrUpdate)
  55. bridgeSensor.POST("/remove", device.BridgeSensor.Remove)
  56. bridgeSensor.GET("/dropdown", device.BridgeSensor.GetList)
  57. bridgeSensor.POST("/enable-disable", device.BridgeSensor.Enable)
  58. bridgeSensor.POST("/import-excel", device.BridgeSensor.ImportExcel)
  59. bridgeSensor.GET("/export-excel", device.BridgeSensor.ExportExcel)
  60. bridgeSensor.GET("/export-template", device.BridgeSensor.ExportTemplate)
  61. }
  62. //摄像头
  63. camera := deviceMgr.Group("/camera")
  64. {
  65. camera.GET("/detail", device.Camera.Detail)
  66. camera.GET("/list", device.Camera.List)
  67. camera.POST("/submit", device.Camera.CreateOrUpdate)
  68. camera.POST("/remove", device.Camera.Remove)
  69. camera.POST("/import-excel", device.Camera.ImportExcel)
  70. camera.GET("/export-excel", device.Camera.ExportExcel)
  71. camera.GET("/export-template", device.Camera.ExportTemplate)
  72. camera.POST("/enable-disable", device.Camera.Enable)
  73. camera.GET("/getList", device.Camera.GetList)
  74. }
  75. //抓拍单元+卡口 控制器
  76. captureUnit := deviceMgr.Group("captureunit")
  77. {
  78. captureUnit.GET("/detail", device.CaptureUint.Detail)
  79. captureUnit.GET("/capture-list", device.CaptureUint.CaptureList)
  80. captureUnit.POST("/capture-submit", device.CaptureUint.CaptureSubmit)
  81. captureUnit.GET("/capture-pull-down-list", device.CaptureUint.CaptureGetList)
  82. captureUnit.GET("/point-list", device.CaptureUint.PointList)
  83. captureUnit.POST("/point-submit", device.CaptureUint.PointSubmit)
  84. captureUnit.GET("/point-pull-down-list", device.CaptureUint.PointGetList)
  85. captureUnit.POST("/remove", device.CaptureUint.Remove)
  86. }
  87. //垃圾桶台账 控制器
  88. garbage := deviceMgr.Group("garbage")
  89. {
  90. garbage.GET("/detail", device.Garbage.Detail)
  91. garbage.GET("/list", device.Garbage.List)
  92. garbage.POST("/submit", device.Garbage.CreateOrUpdate)
  93. garbage.POST("/remove", device.Garbage.Remove)
  94. garbage.GET("/dropdown", device.Garbage.GetList)
  95. garbage.POST("/import-excel", device.Garbage.ImportExcel)
  96. garbage.GET("/export-excel", device.Garbage.ExportExcel)
  97. garbage.GET("/export-template", device.Garbage.ExportTemplate)
  98. }
  99. //垃圾桶道路分组管理 控制器
  100. garbageWayGroup := deviceMgr.Group("garbage-way-group")
  101. {
  102. garbageWayGroup.GET("/detail", device.GarbageWay.Detail)
  103. garbageWayGroup.GET("/list", device.GarbageWay.List)
  104. garbageWayGroup.POST("/submit", device.GarbageWay.CreateOrUpdate)
  105. garbageWayGroup.POST("/remove", device.GarbageWay.Remove)
  106. garbageWayGroup.GET("/getList", device.GarbageWay.GetList)
  107. }
  108. //信息屏基本信息 控制器
  109. infoBoard := deviceMgr.Group("infoboard")
  110. {
  111. infoBoard.GET("/detail", device.InfoBoard.Detail)
  112. infoBoard.GET("/list", device.InfoBoard.List)
  113. infoBoard.POST("/submit", device.InfoBoard.CreateOrUpdate)
  114. infoBoard.POST("/remove", device.InfoBoard.Remove)
  115. infoBoard.POST("/import-excel", device.InfoBoard.ImportExcel)
  116. infoBoard.GET("/export-excel", device.InfoBoard.ExportExcel)
  117. infoBoard.GET("/export-template", device.InfoBoard.ExportTemplate)
  118. infoBoard.GET("/system-operation", device.InfoBoard.CreateOrUpdate)
  119. infoBoard.POST("/enable-disable", device.InfoBoard.Enable)
  120. infoBoard.POST("/show-setting", device.InfoBoard.ShowSetting)
  121. }
  122. //IP广播基本信息 控制器
  123. ipBroadCast := deviceMgr.Group("ipbroadcast")
  124. {
  125. ipBroadCast.GET("/detail", device.IpBroadcast.Detail)
  126. ipBroadCast.GET("/list", device.IpBroadcast.List)
  127. ipBroadCast.POST("/submit", device.IpBroadcast.CreateOrUpdate)
  128. ipBroadCast.POST("/remove", device.IpBroadcast.Remove)
  129. ipBroadCast.POST("/import-excel", device.IpBroadcast.ImportExcel)
  130. ipBroadCast.GET("/export-excel", device.IpBroadcast.ExportExcel)
  131. ipBroadCast.GET("/export-template", device.IpBroadcast.ExportTemplate)
  132. ipBroadCast.POST("/setting-volume", device.IpBroadcast.SettingVolume)
  133. }
  134. //一键报警服务表 控制器
  135. Alarm := deviceMgr.Group("akeyalarmserve")
  136. {
  137. Alarm.GET("/detail", device.Alarm.Detail)
  138. Alarm.GET("/list", device.Alarm.List)
  139. Alarm.POST("/submit", device.Alarm.CreateOrUpdate)
  140. Alarm.POST("/remove", device.Alarm.Remove)
  141. Alarm.GET("/getList", device.Alarm.GetList)
  142. Alarm.POST("/import-excel", device.Alarm.ImportExcel)
  143. Alarm.GET("/export-excel", device.Alarm.ExportExcel)
  144. Alarm.GET("/export-template", device.Alarm.ExportTemplate)
  145. }
  146. //一键报警终端表 控制器
  147. AlarmTerminal := deviceMgr.Group("akeyalarmterminal")
  148. {
  149. AlarmTerminal.GET("/detail", device.AlarmTerminal.Detail)
  150. AlarmTerminal.GET("/list", device.AlarmTerminal.List)
  151. AlarmTerminal.POST("/submit", device.AlarmTerminal.CreateOrUpdate)
  152. AlarmTerminal.POST("/remove", device.AlarmTerminal.Remove)
  153. AlarmTerminal.POST("/import-excel", device.AlarmTerminal.ImportExcel)
  154. AlarmTerminal.GET("/export-excel", device.AlarmTerminal.ExportExcel)
  155. AlarmTerminal.GET("/export-template", device.AlarmTerminal.ExportTemplate)
  156. }
  157. //灯杆基本信息 控制器
  158. lampPole := deviceMgr.Group("lamppole")
  159. {
  160. lampPole.GET("/detail", device.LampPole.Detail)
  161. lampPole.GET("/getRelevanceDetail", device.LampPole.GetRelevanceDetail)
  162. lampPole.GET("/list", device.LampPole.List)
  163. lampPole.POST("/submit", device.LampPole.CreateOrUpdate)
  164. lampPole.POST("/remove", device.LampPole.Remove)
  165. lampPole.GET("/getList", device.LampPole.GetList)
  166. lampPole.POST("/import-excel", device.LampPole.ImportExcel)
  167. lampPole.GET("/export-excel", device.LampPole.ExportExcel)
  168. lampPole.GET("/export-template", device.LampPole.ExportTemplate)
  169. }
  170. //灯杆分组
  171. lampPoleGroup := deviceMgr.Group("/lamppolegroup")
  172. {
  173. lampPoleGroup.GET("/detail", device.LampPoleGroup.Detail)
  174. lampPoleGroup.GET("/list", device.LampPoleGroup.List)
  175. lampPoleGroup.POST("/submit", device.LampPoleGroup.CreateOrUpdate)
  176. lampPoleGroup.POST("/remove", device.LampPoleGroup.Remove)
  177. lampPoleGroup.GET("/getList", device.LampPoleGroup.GetList)
  178. lampPoleGroup.GET("/filtration-list", device.LampPoleGroup.FiltrationList)
  179. lampPoleGroup.GET("/getTree", device.LampPoleGroup.GetTree)
  180. }
  181. //灯控基本信息 控制器
  182. lightControl := deviceMgr.Group("lightcontrol")
  183. {
  184. lightControl.GET("/detail", device.Light.Detail)
  185. lightControl.GET("/list", device.Light.List)
  186. lightControl.POST("/submit", device.Light.CreateOrUpdate)
  187. lightControl.POST("/remove", device.Light.Remove)
  188. lightControl.GET("/getLampPoleList", device.Light.GetList)
  189. lightControl.POST("/import-excel", device.Light.ImportExcel)
  190. lightControl.GET("/export-excel", device.Light.ExportExcel)
  191. lightControl.GET("/export-template", device.Light.ExportTemplate)
  192. lightControl.POST("/enable-disable", device.Light.Enable)
  193. lightControl.POST("/off-one", device.Light.Switch) //todo 在strategy中
  194. }
  195. manholeCover := deviceMgr.Group("manholecover")
  196. {
  197. manholeCover.GET("/detail", device.ManholeCover.Detail)
  198. manholeCover.GET("/list", device.ManholeCover.List)
  199. manholeCover.POST("/submit", device.ManholeCover.CreateOrUpdate)
  200. manholeCover.POST("/remove", device.ManholeCover.Remove)
  201. manholeCover.POST("/setting", device.ManholeCover.Setting)
  202. manholeCover.GET("/getList", device.ManholeCover.GetList)
  203. manholeCover.POST("/import-excel", device.ManholeCover.ImportExcel)
  204. manholeCover.GET("/export-excel", device.ManholeCover.ExportExcel)
  205. manholeCover.GET("/export-template", device.ManholeCover.ExportExcel)
  206. manholeCover.GET("/all-list", device.ManholeCover.AllList)
  207. }
  208. //灯随车走分组 控制器
  209. onDemandGroup := deviceMgr.Group("on-demand-group")
  210. {
  211. onDemandGroup.GET("/detail", device.OnDemandGroup.Detail)
  212. onDemandGroup.GET("/list", device.OnDemandGroup.List)
  213. onDemandGroup.POST("/submit", device.OnDemandGroup.CreateOrUpdate)
  214. onDemandGroup.POST("/remove", device.OnDemandGroup.Remove)
  215. onDemandGroup.GET("/getList", device.OnDemandGroup.GetList)
  216. onDemandGroup.GET("/group-number", device.OnDemandGroup.GroupNumber)
  217. }
  218. //灯随车走传感器 控制器
  219. onDemandSensor := deviceMgr.Group("on-demand-sensor")
  220. {
  221. onDemandSensor.GET("/detail", device.OnDemandSensor.Detail)
  222. onDemandSensor.GET("/list", device.OnDemandSensor.List)
  223. onDemandSensor.POST("/submit", device.OnDemandSensor.CreateOrUpdate)
  224. onDemandSensor.POST("/remove", device.OnDemandSensor.Remove)
  225. onDemandSensor.POST("/import-excel", device.OnDemandSensor.ImportExcel)
  226. onDemandSensor.GET("/export-excel", device.OnDemandSensor.ExportExcel)
  227. onDemandSensor.GET("/export-template", device.OnDemandSensor.ExportTemplate)
  228. }
  229. //环境传感器 控制器
  230. optoSensor := deviceMgr.Group("optosensor")
  231. {
  232. optoSensor.GET("/detail", device.OptoSensor.Detail)
  233. optoSensor.GET("/list", device.OptoSensor.List)
  234. optoSensor.POST("/submit", device.OptoSensor.CreateOrUpdate)
  235. optoSensor.POST("/remove", device.OptoSensor.Remove)
  236. optoSensor.GET("/getList", device.OptoSensor.GetList)
  237. optoSensor.POST("/set-default", device.OptoSensor.SetDefault)
  238. optoSensor.POST("/import-excel", device.OptoSensor.ImportExcel)
  239. optoSensor.GET("/export-excel", device.OptoSensor.ExportExcel)
  240. optoSensor.GET("/export-template", device.OptoSensor.ExportTemplate)
  241. }
  242. //配电箱基本信息 控制器
  243. switchBox := deviceMgr.Group("switchbox")
  244. {
  245. switchBox.GET("/detail", device.SwitchBox.Detail)
  246. switchBox.GET("/list", device.SwitchBox.List)
  247. switchBox.POST("/submit", device.SwitchBox.CreateOrUpdate)
  248. switchBox.POST("/remove", device.SwitchBox.Remove)
  249. switchBox.GET("/getList", device.SwitchBox.GetList)
  250. switchBox.POST("/import-excel", device.SwitchBox.ImportExcel)
  251. switchBox.GET("/export-excel", device.SwitchBox.ExportExcel)
  252. switchBox.GET("/export-template", device.SwitchBox.ExportTemplate)
  253. }
  254. //变压器基本信息 控制器
  255. transformer := deviceMgr.Group("transformer")
  256. {
  257. transformer.GET("/detail", device.Transformer.Detail)
  258. transformer.GET("/list", device.Transformer.List)
  259. transformer.POST("/submit", device.Transformer.CreateOrUpdate)
  260. transformer.POST("/remove", device.Transformer.Remove)
  261. transformer.GET("/getList", device.Transformer.GetList)
  262. }
  263. //智慧网关基本信息 控制器
  264. wisdomGateway := deviceMgr.Group("wisdomgateway")
  265. {
  266. wisdomGateway.GET("/detail", device.Gateway.Detail)
  267. wisdomGateway.GET("/list", device.Gateway.List)
  268. wisdomGateway.POST("/submit", device.Gateway.CreateOrUpdate)
  269. wisdomGateway.POST("/remove", device.Gateway.Remove)
  270. wisdomGateway.GET("/getList", device.Gateway.GetList)
  271. wisdomGateway.GET("/getRelevanceDetail", device.Gateway.GetRelevanceDetail)
  272. wisdomGateway.POST("/import-excel", device.Gateway.ImportExcel)
  273. wisdomGateway.GET("/export-excel", device.Gateway.ExportExcel)
  274. wisdomGateway.GET("/export-template", device.Gateway.ExportTemplate)
  275. }
  276. //zigBee网关 控制器
  277. zigbee := deviceMgr.Group("zigbee")
  278. {
  279. zigbee.GET("/detail", device.Zigbee.Detail)
  280. zigbee.GET("/list", device.Zigbee.List)
  281. zigbee.POST("/submit", device.Zigbee.CreateOrUpdate)
  282. zigbee.POST("/remove", device.Zigbee.Remove)
  283. zigbee.GET("/getList", device.Zigbee.GetList)
  284. zigbee.POST("/import-excel", device.Zigbee.ImportExcel)
  285. zigbee.GET("/export-excel", device.Zigbee.ExportExcel)
  286. zigbee.GET("/export-template", device.Zigbee.ExportTemplate)
  287. }
  288. // 设备控制相关
  289. strategy := engine.Group("/api/longchi/strategy")
  290. ////智能照明(灯杆分组/灯控树) 控制器
  291. //intelligentLighting := strategy.Group("IntelligentLighting")
  292. //{
  293. // intelligentLighting.GET("/detail", device.IntelligentLighting.Detail)
  294. // intelligentLighting.GET("/list", device.IntelligentLighting.List)
  295. // intelligentLighting.POST("/relationList", device.IntelligentLighting.RelationList)
  296. // intelligentLighting.POST("/relation", device.IntelligentLighting.Relation)
  297. // intelligentLighting.POST("/remove", device.IntelligentLighting.Remove)
  298. // intelligentLighting.POST("/changHandSwitch", device.IntelligentLighting.ChangeHandSwitch)
  299. // intelligentLighting.POST("/get_status", device.IntelligentLighting.GetStatus)
  300. //}
  301. //照明策略 控制器
  302. lightStrategy := strategy.Group("light")
  303. {
  304. lightStrategy.GET("/detail", device.LightStrategy.Detail)
  305. lightStrategy.GET("/list", device.LightStrategy.List)
  306. lightStrategy.POST("/submit", device.LightStrategy.CreateOrUpdate)
  307. lightStrategy.POST("/remove", device.LightStrategy.Remove)
  308. }
  309. //照明策略略关联(灯杆分组/灯控树形态) 控制器
  310. lightRelation := strategy.Group("lightrelation")
  311. {
  312. lightRelation.GET("/detail", device.IntelligentLighting.Detail)
  313. lightRelation.GET("/list", device.IntelligentLighting.List)
  314. lightRelation.POST("/remove", device.IntelligentLighting.Remove)
  315. lightRelation.POST("/relationList", device.IntelligentLighting.RelationList)
  316. lightRelation.POST("/relation", device.IntelligentLighting.Relation)
  317. lightRelation.POST("/changeHandSwitch", device.IntelligentLighting.ChangeHandSwitch)
  318. }
  319. //灯随车走照明控制 控制器
  320. onDemandLightingControl := strategy.Group("onDemandLightingControl")
  321. {
  322. onDemandLightingControl.GET("/detail", device.OnDemandLightingControl.Detail)
  323. onDemandLightingControl.GET("/list", device.OnDemandLightingControl.List)
  324. onDemandLightingControl.POST("/relation", device.OnDemandLightingControl.Relation)
  325. onDemandLightingControl.POST("/changHandSwitch", device.OnDemandLightingControl.ChangeHandSwitch)
  326. }
  327. //登录校验相关
  328. auth := engine.Group("/api/blade-auth/oauth")
  329. {
  330. auth.POST("/token", system.Auth.Token)
  331. auth.GET("/logout", system.Auth.Logout)
  332. auth.GET("/captcha", system.Auth.Captcha)
  333. auth.GET("/clear-cache", system.Auth.Clear)
  334. }
  335. login := engine.Group("/api/login")
  336. {
  337. login.GET("", system.Auth.Login)
  338. }
  339. //用户
  340. user := engine.Group("/api/blade-user")
  341. {
  342. user.GET("/detail", system.User.GetDetail)
  343. user.GET("/page", system.User.List)
  344. user.POST("/submit", system.User.Submit)
  345. user.POST("/update", system.User.Update)
  346. user.POST("/remove", system.User.Remove)
  347. user.POST("/reset-password", system.User.ResetPwd)
  348. user.POST("/user-list", system.User.GetList)
  349. user.POST("/grant", system.User.Grant)
  350. }
  351. //租户
  352. tenant := engine.Group("/api/blade-system/tenant")
  353. {
  354. tenant.GET("/info", system.Tenant.GetInfo)
  355. tenant.GET("/detail", system.Tenant.GetDetail)
  356. tenant.GET("/page", system.Tenant.List)
  357. tenant.POST("/submit", system.Tenant.Submit)
  358. tenant.POST("/remove", system.Tenant.Remove)
  359. tenant.POST("/select", system.Tenant.GetList)
  360. tenant.GET("/list", system.Tenant.List)
  361. }
  362. //角色
  363. role := engine.Group("/api/blade-system/role")
  364. {
  365. role.GET("/detail", system.Role.GetDetail)
  366. role.GET("/list", system.Role.List)
  367. role.GET("/tree", system.Role.Tree)
  368. role.POST("/submit", system.Role.Submit)
  369. role.POST("/remove", system.Role.Remove)
  370. role.POST("/grant", system.Role.Grant)
  371. }
  372. //菜单
  373. menu := engine.Group("/api/blade-system/menu")
  374. {
  375. menu.GET("/detail", system.Menu.GetDetail)
  376. menu.GET("list", system.Menu.List)
  377. menu.GET("lazy-list", system.Menu.LazyList)
  378. menu.GET("menuList", system.Menu.MenuList)
  379. menu.GET("lazyMenuList", system.Menu.LazyMenuList)
  380. menu.POST("submit", system.Menu.Submit)
  381. menu.POST("remove", system.Menu.Remove)
  382. menu.GET("routes", system.Menu.Routes)
  383. menu.GET("routesExt", system.Menu.RoutesExt)
  384. menu.GET("buttons", system.Menu.Buttons)
  385. menu.GET("tree", system.Menu.Tree)
  386. menu.GET("grantTree", system.Menu.GrantTree)
  387. menu.GET("roleTreeKeys", system.Menu.RoleTreeKeys)
  388. menu.GET("grantTopTree", system.Menu.GrantTopTree)
  389. menu.GET("topTreeKeys", system.Menu.GrantTopTree)
  390. menu.GET("top-menu", system.Menu.TopMenu)
  391. menu.GET("authRoutes", system.Menu.Routes)
  392. }
  393. //字典
  394. dict := engine.Group("/api/blade-system/dict")
  395. {
  396. dict.GET("/dictionary", system.Dict.Dictionary)
  397. }
  398. //工作台
  399. workbench := engine.Group("/api/longchi/report/workbench/")
  400. {
  401. workbench.POST("countdevice", device.Workbench.CountDevice)
  402. workbench.POST("countalarm", device.Workbench.CountAlarm)
  403. workbench.POST("aqi", device.Workbench.Aqi)
  404. workbench.POST("countjobtodo", device.Workbench.CountJobTodo)
  405. workbench.POST("notification", device.Workbench.Notification)
  406. workbench.GET("light-pandect", device.Workbench.LightRate)
  407. }
  408. //数据统计记录
  409. recordGroup := engine.Group("/api/longchi/record")
  410. lightRecord := recordGroup.Group("/lighting/lightingrecordhis")
  411. {
  412. lightRecord.GET("/list", record.LightRecord.List)
  413. }
  414. //安防
  415. securityGroup := engine.Group("/api/longchi/security")
  416. {
  417. securityGroup.GET("/getCameraLiveList", security.Security.GetCameraLiveList)
  418. }
  419. }