exa_customer.go 643 Bytes
Newer Older
haoyanbin's avatar
1  
haoyanbin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package router

import (
	"gin-vue-admin/api/v1"
	"gin-vue-admin/middleware"
	"github.com/gin-gonic/gin"
)

func InitCustomerRouter(Router *gin.RouterGroup) {
	CustomerRouter := Router.Group("customer").Use(middleware.OperationRecord())
	{
		CustomerRouter.POST("customer", v1.CreateExaCustomer)     // 创建客户
		CustomerRouter.PUT("customer", v1.UpdateExaCustomer)      // 更新客户
		CustomerRouter.DELETE("customer", v1.DeleteExaCustomer)   // 删除客户
		CustomerRouter.GET("customer", v1.GetExaCustomer)         // 获取单一客户信息
		CustomerRouter.GET("customerList", v1.GetExaCustomerList) // 获取客户列表
	}
}