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.
15 lines
367 B
15 lines
367 B
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
v1 "pure-admin/api/admin"
|
|
)
|
|
|
|
func InitOrderRouter(Router *gin.RouterGroup) {
|
|
InRouter := Router.Group("order")
|
|
{
|
|
InRouter.GET("list", v1.GetOrderList) //订单列表
|
|
InRouter.GET("detail", v1.GetOrderDetail) //订单详情
|
|
InRouter.GET("statistic", v1.GetStatisticData) // 数据统计
|
|
}
|
|
}
|
|
|