fix
zhangqian
2023-10-17 c1b00128e92e7b53a6b92c7228e19235c7f3be10
router/index.go
@@ -1,6 +1,7 @@
package router
import (
   v1 "aps_crm/api/v1"
   "aps_crm/conf"
   _ "aps_crm/docs"
   "aps_crm/middleware"
@@ -192,5 +193,10 @@
      routerGroup.InitCollectionProjectionRouter(PrivateGroup)
      routerGroup.InitContactInformationRouter(PrivateGroup)
   }
   codeGroup := PrivateGroup.Group("code")
   codeApi := v1.CodeApi{}
   {
      codeGroup.GET("getCodeList", codeApi.GetCodeList) //获取编码列表
   }
   return Router
}