You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
680 B

  1. package router
  2. import (
  3. "gin-vue-admin/api/v1"
  4. "gin-vue-admin/middleware"
  5. "github.com/gin-gonic/gin"
  6. )
  7. func InitCustomerRouter(Router *gin.RouterGroup) {
  8. ApiRouter := Router.Group("customer").
  9. Use(middleware.JWTAuth()).
  10. Use(middleware.CasbinHandler()).
  11. Use(middleware.OperationRecord())
  12. {
  13. ApiRouter.POST("customer", v1.CreateExaCustomer) // 创建客户
  14. ApiRouter.PUT("customer", v1.UpdateExaCustomer) // 更新客户
  15. ApiRouter.DELETE("customer", v1.DeleteExaCustomer) // 删除客户
  16. ApiRouter.GET("customer", v1.GetExaCustomer) // 获取单一客户信息
  17. ApiRouter.GET("customerList", v1.GetExaCustomerList) // 获取客户列表
  18. }
  19. }