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.
18 lines
574 B
18 lines
574 B
package influencer
|
|
|
|
import (
|
|
"pure/api/influencer"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func InitInfluencerOrderRouter(Router *gin.RouterGroup) {
|
|
InRouter := Router.Group("order")
|
|
{
|
|
InRouter.GET("data", influencer.GetOrderData) // 数据
|
|
InRouter.GET("detail", influencer.GetOrderDetail) // 详情
|
|
InRouter.GET("goods/snapshot", influencer.GetOrderGoodsInfo) // 获取商品快照信息
|
|
InRouter.GET("list", influencer.GetUserOrderList) // 列表
|
|
InRouter.GET("total", influencer.GetOrderTotalList) // 订单统计
|
|
}
|
|
}
|
|
|