From 4041b5571482c5515d15857f59b14a72045350c6 Mon Sep 17 00:00:00 2001 From: liujiandao <274878379@qq.com> Date: 星期一, 23 十月 2023 12:05:20 +0800 Subject: [PATCH] Merge branch 'master' of http://192.168.5.5:10010/r/aps/WMS --- router/router.go | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/router/router.go b/router/router.go index 1ac4c3f..4ac8ab8 100644 --- a/router/router.go +++ b/router/router.go @@ -68,6 +68,7 @@ operationTypeAPI := r.Group(urlPrefix + "/operationType") { operationTypeAPI.GET("operationType", operationTypeController.List) // 鑾峰彇浣滀笟绫诲瀷鍒楄〃 + operationTypeAPI.GET("listTransfer", operationTypeController.ListTransfer) // 鑾峰彇浣滀笟绫诲瀷鍒楄〃 operationTypeAPI.POST("operationType", operationTypeController.Add) // 鏂板浣滀笟绫诲瀷 operationTypeAPI.PUT("operationType/:id", operationTypeController.Update) // 淇敼浣滀笟绫诲瀷 operationTypeAPI.DELETE("operationType/:id", operationTypeController.Delete) // 鍒犻櫎浣滀笟绫诲瀷 @@ -82,7 +83,7 @@ operationAPI.POST("update", operationController.Update) operationAPI.DELETE("operation/:id", operationController.Delete) operationAPI.PUT("finish/:id", operationController.Finish) - operationAPI.POST("listAll", operationController.ListAll) + operationAPI.POST("listTransfer", operationController.ListTransfer) } -- Gitblit v1.8.0