Просмотр исходного кода

//update test

release_toaliyun_real
xhxu 4 лет назад
Родитель
Сommit
67cbec2762
1 измененных файлов: 5 добавлений и 1 удалений
  1. +5
    -1
      mallinkService/src/main/java/com/iformall/douyin/web/api/impl/TtWebProductServiceImpl.java

+ 5
- 1
mallinkService/src/main/java/com/iformall/douyin/web/api/impl/TtWebProductServiceImpl.java Просмотреть файл

@@ -61,7 +61,11 @@ public class TtWebProductServiceImpl implements TtWebProductService {
public TtSpuGetResult spuGet(TtSpuGet spuGet) throws WxErrorException { public TtSpuGetResult spuGet(TtSpuGet spuGet) throws WxErrorException {
final TtWebGetRequestExecutor executor = new TtWebGetRequestExecutor(this.service.getRequestHttp()); final TtWebGetRequestExecutor executor = new TtWebGetRequestExecutor(this.service.getRequestHttp());
String apiUrl = this.service.getTtWebConfig().getApiBegin().getPrefix() + this.GET_SPU_GET; String apiUrl = this.service.getTtWebConfig().getApiBegin().getPrefix() + this.GET_SPU_GET;
String result = this.service.execute(executor, apiUrl, spuGet.toString());
String param = "spu_ext_id=" + spuGet.getSpuExtId() +
"need_spu_draft=" + spuGet.isNeedSpuDraft() +
"spu_draft_count=" + spuGet.getSpuDraftcount() +
"spu_draft_count=" + spuGet.getSupplierIdsForFilterReason().toString();
String result = this.service.execute(executor, apiUrl, param);
return TtSpuGetResult.fromJson(result); return TtSpuGetResult.fromJson(result);
} }




Загрузка…
Отмена
Сохранить