This commit is contained in:
suyl
2021-09-14 10:00:42 +08:00
parent 1253662200
commit c14632ebf6
4 changed files with 61 additions and 0 deletions

View File

@@ -1300,6 +1300,20 @@ func (c *StoreController) ReorderBrandCategories() {
})
}
// @Title 修改品牌分类为京西分类
// @Description 修改品牌分类为京西分类
// @Param token header string true "认证token"
// @Param brandID formData int true "品牌ID"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /InsertBrandCategories [post]
func (c *StoreController) InsertBrandCategories() {
c.callInsertBrandCategories(func(params *tStoreInsertBrandCategoriesParams) (retVal interface{}, errCode string, err error) {
err = cms.InsertBrandCategories(params.Ctx, params.BrandID)
return retVal, "", err
})
}
// @Title 查询品牌号码
// @Description 查询品牌号码
// @Param token header string true "认证token"