This commit is contained in:
邹宗楠
2026-01-29 09:30:03 +08:00
parent 9a804f32be
commit 5faf0dc1ff
7 changed files with 72918 additions and 72711 deletions

View File

@@ -635,6 +635,21 @@ func (c *SkuController) UpdateVendorSkuImg() {
})
}
// @Title 删除已经存在文件
// @Description 删除已经存在文件
// @Param token header string true "认证token"
// @Param name formData string true "文件名称"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /DeleteVendorSkuImg [post]
func (c *SkuController) DeleteVendorSkuImg() {
c.callDeleteVendorSkuImg(func(params *tSkuDeleteVendorSkuImgParams) (retVal interface{}, errCode string, err error) {
err = jxutils.DeleteExportContent(params.Name)
return retVal, "", err
})
}
// @Title 得到平台类别
// @Description 得到平台类别
// @Param token header string true "认证token"