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.
17 lines
517 B
17 lines
517 B
package router
|
|
|
|
import (
|
|
"bkb-seller/api/bkb"
|
|
"bkb-seller/middleware"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func InitConsoleRouter(Router *gin.RouterGroup) {
|
|
goodsRouter := Router.Group("console").Use(middleware.OperationRecord())
|
|
{
|
|
goodsRouter.GET("sell-analyses", bkb.SellAnalyses) //销售统计
|
|
goodsRouter.GET("influencer-sell-analyses", bkb.SellAnalysesInfluencer) //网红销售统计
|
|
goodsRouter.GET("influencer-sell-rank", bkb.SellRankInfluencer) //网红销售排名
|
|
|
|
}
|
|
}
|
|
|