This commit is contained in:
邹宗楠
2022-11-18 17:29:50 +08:00
parent b46ad9924b
commit b489421b9e
4 changed files with 67 additions and 0 deletions

View File

@@ -829,3 +829,15 @@ func (c *SkuController) BatchSetRestockingPrice() {
return nil, "", nil
})
}
// @Title 抖店商品类目修改
// @Description 抖店商品类目修改
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /UpdateTiktokCategory [post]
func (c *SkuController) UpdateTiktokCategory() {
c.callUpdateCategory(func(params *tSkuUpdateCategoryParams) (interface{}, string, error) {
data, err := tiktok_store.GetProductAuditList("57939570")
return data, "", err
})
}