Warning.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package routers
  2. import (
  3. "Cold_Api/conf"
  4. "Cold_Api/controllers"
  5. beego "github.com/beego/beego/v2/server/web"
  6. )
  7. func init() {
  8. ns := beego.NewNamespace(conf.Version,
  9. // 设备报警
  10. beego.NSNamespace("/DeviceWarning",
  11. beego.NSRouter("/List", &controllers.DeviceController{}, "*:DeviceWarning_List"), // 告警列表
  12. beego.NSRouter("/List2", &controllers.DeviceController{}, "*:DeviceWarning_List2"), // 告警列表 - 跨月查询
  13. beego.NSRouter("/List_sse", &controllers.DeviceController{}, "*:DeviceWarning_List_Sse"), // 告警列表 - 跨月查询
  14. beego.NSRouter("/Get", &controllers.DeviceController{}, "*:DeviceWarning_Get"), // 获取告警
  15. beego.NSRouter("/Edit", &controllers.DeviceController{}, "*:DeviceWarning_Post"), // 修改告警 报警处理
  16. beego.NSRouter("/Del", &controllers.DeviceController{}, "*:DeviceWarning_Del"), // 删除告警
  17. beego.NSRouter("/ToExcel", &controllers.DeviceController{}, "*:DeviceWarning_Data_Excel"), // 导出excel
  18. beego.NSRouter("/ToExcel2", &controllers.DeviceController{}, "*:DeviceWarning_Data_Excel2"), // 导出excel
  19. beego.NSRouter("/DeviceSensor_List", &controllers.DeviceController{}, "*:Read_Warning_List_By_DS_T_type"), // 告警列表 - 小程序
  20. ),
  21. // 报警类型
  22. beego.NSNamespace("/WarningType",
  23. beego.NSRouter("/List_All", &controllers.DeviceController{}, "*:WarningType_List_All"), // 添加权限-告警类型列表
  24. beego.NSRouter("/Power_List", &controllers.DeviceController{}, "*:WarningType_Power_List_All"), // 报警搜索-告警类型列表
  25. ),
  26. // 报警发送
  27. beego.NSNamespace("/WarningSend",
  28. beego.NSRouter("/List", &controllers.DeviceController{}, "*:Read_WarningSend_List"), // 报警发送列表
  29. ),
  30. // 内部用户设备报警率
  31. beego.NSNamespace("/WarningRate",
  32. beego.NSRouter("/List", &controllers.DeviceController{}, "*:Read_WarningRate_List"), // 内部用户设备报警率列表
  33. beego.NSRouter("/User_List", &controllers.DeviceController{}, "*:Read_WarningRate_List"), // 内部用户设备报警率列表
  34. ),
  35. // 报警处理
  36. beego.NSNamespace("/WarningHandle",
  37. beego.NSRouter("/List", &controllers.DeviceController{}, "*:Read_WarningHandle_List"), // 内部用户设备报警率列表
  38. ),
  39. // 公司管理-设备报警
  40. beego.NSNamespace("/CompanyWarning",
  41. beego.NSRouter("/List", &controllers.DeviceController{}, "*:CompanyWarning_List"), // 告警列表
  42. beego.NSRouter("/List2", &controllers.DeviceController{}, "*:CompanyWarning_List2"), // 告警列表
  43. beego.NSRouter("/ToExcel", &controllers.DeviceController{}, "*:CompanyWarning_Data_Excel"), // 告警列表
  44. beego.NSRouter("/ToExcel2", &controllers.DeviceController{}, "*:CompanyWarning_Data_Excel2"), // 告警列表
  45. ),
  46. )
  47. beego.AddNamespace(ns)
  48. }