This commit is contained in:
邹宗楠
2024-03-05 17:54:46 +08:00
parent efacc81f0a
commit 9059f4ab5b
4 changed files with 131 additions and 4 deletions

View File

@@ -204,6 +204,21 @@ func (c *SkuController) AddSkuName() {
})
}
// @Title 获取美团商品信息添加到本地
// @Description 获取美团商品信息添加到本地
// @Param token header string true "认证token"
// @Param orderSkuID formData int true "本地商品存储id"
// @Param vendorOrderID formData string true "订单id"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /MTSku2Local [post]
func (c *SkuController) MTSku2Local() {
c.callMTSku2Local(func(params *tSkuMTSku2LocalParams) (retVal interface{}, errCode string, err error) {
return retVal, "", err
})
}
// @Title 修改商品名信息
// @Description 修改商品名信息注意如果Places没有变动不要传此字段否则会导致不必要的删除与新增
// @Param token header string true "认证token"