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
517 B
18 lines
517 B
6 months ago
|
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) //网红销售排名
|
||
|
|
||
|
}
|
||
|
}
|