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.

14 lines
333 B

package router
import (
"bkb-seller/api/bkb"
"bkb-seller/middleware"
"github.com/gin-gonic/gin"
)
func InitTbAttributeRouter(Router *gin.RouterGroup) { //规格属性
attributeRouter := Router.Group("attribute").Use(middleware.OperationRecord())
{
attributeRouter.GET("attribute-list", bkb.GetTbAttributeList) //列表
}
}