From 8bb0feadd66f19dc0ced72a1549066fd20702167 Mon Sep 17 00:00:00 2001 From: like Date: Tue, 11 Jul 2023 09:57:49 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=A2=84=E8=AD=A6=E5=B7=A5=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/workorderrouter.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/router/workorderrouter.go b/src/router/workorderrouter.go index 876de20..f07ca60 100644 --- a/src/router/workorderrouter.go +++ b/src/router/workorderrouter.go @@ -10,6 +10,12 @@ import ( // InitWorkOrderRouter 初始化工单路由 func InitWorkOrderRouter(e *gin.Engine) { so := e.Group(fmt.Sprintf("%s/work_order", conf.Options.Prefix)) + //预警工单管理 + alert := so.Group("/alert") + { + alert.GET("/list", controller.ListAlertList) // 列表 + } + //业务工单管理 manage := so.Group("/work_order_manage") { -- 2.26.0