소스 검색

//update test

release_toaliyun_real
xhxu 4 년 전
부모
커밋
35b9d7e6db
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. +5
    -3
      mallinkService/src/main/java/com/iformall/douyin/web/api/impl/TtWebProductServiceImpl.java

+ 5
- 3
mallinkService/src/main/java/com/iformall/douyin/web/api/impl/TtWebProductServiceImpl.java 파일 보기

@@ -62,9 +62,11 @@ public class TtWebProductServiceImpl implements TtWebProductService {
final TtWebGetRequestExecutor executor = new TtWebGetRequestExecutor(this.service.getRequestHttp());
String apiUrl = this.service.getTtWebConfig().getApiBegin().getPrefix() + this.GET_SPU_GET;
String param = "spu_ext_id=" + spuGet.getSpuExtId() +
"need_spu_draft=" + spuGet.isNeedSpuDraft() +
"spu_draft_count=" + spuGet.getSpuDraftcount() +
"spu_draft_count=" + spuGet.getSupplierIdsForFilterReason().toString();
"&need_spu_draft=" + spuGet.isNeedSpuDraft() +
"&spu_draft_count=" + spuGet.getSpuDraftcount();
if(spuGet.getSupplierIdsForFilterReason() != null && spuGet.getSupplierIdsForFilterReason().size() > 0){
param += "&spu_draft_count=" + spuGet.getSupplierIdsForFilterReason().toString();
}
String result = this.service.execute(executor, apiUrl, param);
return TtSpuGetResult.fromJson(result);
}


불러오는 중...
취소
저장