pdd 物料详情

This commit is contained in:
suyl
2021-04-27 16:05:51 +08:00
parent db199feb00
commit 37c188ffa7
8 changed files with 76 additions and 0 deletions

View File

@@ -2072,3 +2072,8 @@ func GetVendorMatters(ctx *jxcontext.Context, vendorID int, vendorCatID, keyword
handler := partner.GetHandler(vendorID)
return handler.GetUnionMatterList(ctx, vendorCatID, keyword, page, pageSize, sortType, listID)
}
func GetVendorMatterDetail(ctx *jxcontext.Context, vendorID int, goodsID string) (goodsDetail *partner.GoodsDetail, err error) {
handler := partner.GetHandler(vendorID)
return handler.GetUnionMatterDetail(ctx, goodsID)
}