From a8df558f7eef21da393ef107deb846fe24d9382b Mon Sep 17 00:00:00 2001 From: DengBiao <2319963317@qq.com> Date: Wed, 3 Apr 2024 12:05:36 +0800 Subject: [PATCH] update --- app/router/admin_router.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/router/admin_router.go b/app/router/admin_router.go index 2712636..460be2f 100644 --- a/app/router/admin_router.go +++ b/app/router/admin_router.go @@ -119,10 +119,10 @@ func rDeviceManage(r *gin.RouterGroup) { } func rMerchant(r *gin.RouterGroup) { - r.POST("/add", hdl2.MerchantAdd) //商家管理-新增 - r.POST("/update", hdl2.MerchantUpdate) //商家管理-编辑 - r.POST("/list", hdl2.MerchantList) //商家管理-列表 - r.DELETE("/delete/:merchant_id", hdl2.MerchantDelete) //商家管理-删除 + r.POST("/add", hdl2.MerchantAdd) //商家管理-新增 + r.POST("/update", hdl2.MerchantUpdate) //商家管理-编辑 + r.POST("/list", hdl2.MerchantList) //商家管理-列表 + //r.DELETE("/delete/:merchant_id", hdl2.MerchantDelete) //商家管理-删除 } func rDataStatistics(r *gin.RouterGroup) {