|
|
@@ -315,7 +315,7 @@ public class ChinaumsSenselessPayService extends SuperService {
|
|
|
if (!collectionResultContent.getState().equals(ResultState.Success)){
|
|
|
return ResultContent.buildFail("请求失败");
|
|
|
}
|
|
|
- Map<String, Object> bodyMap = BeanUtil.bean2Map(collectionResultContent.getContent());
|
|
|
+ Map bodyMap = JsonUtil.toObject(JsonUtil.toJson(collectionResultContent.getContent()), Map.class);
|
|
|
if (bodyMap.get("respCode").equals("0000")){
|
|
|
return ResultContent.buildContent(collectionResultContent.getContent());
|
|
|
}
|