|
@@ -40,10 +40,8 @@ public class PushFacade {
|
|
|
PushDTO pushDTO = new PushDTO();
|
|
|
SearchData searchData = assembleFacade.assembleData(pushVO);
|
|
|
RespDTO<PushDTO> respDTO = aiptServiceClient.pushInner(searchData);
|
|
|
- PushDTO data = new PushDTO();
|
|
|
- if (RespDTOUtil.respIsOK(respDTO)) {
|
|
|
- data = respDTO.data;
|
|
|
- }
|
|
|
+ RespDTOUtil.respNGDeal(respDTO, "中间层没有返回结果");
|
|
|
+ PushDTO data = respDTO.data;
|
|
|
|
|
|
String featureType = searchData.getFeatureType();
|
|
|
String[] featureTypes = featureType.split(",|,");
|