+ DeleteSkusFromAct

This commit is contained in:
gazebo
2019-08-09 09:33:01 +08:00
parent 3541fada72
commit 35e06e8c94
2 changed files with 68 additions and 0 deletions

View File

@@ -272,3 +272,17 @@ func (c *ActController) RefreshPageActs() {
return retVal, "", err
})
}
// @Title 将SKU从所有活动中删除
// @Description 将SKU从所有活动中删除
// @Param token header string true "认证token"
// @Param skuIDs formData string true "skuID列表"
// @Param vendorID formData int true "厂商ID"
// @Param isAsync formData bool false "是否异步"
// @Param isContinueWhenError formData bool false "单个同步失败是否继续缺省false"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /DeleteSkusFromAct [delete]
func (c *ActController) DeleteSkusFromAct() {
}