fix:响应code变更

This commit is contained in:
Zhujx
2025-08-06 13:51:24 +08:00
parent 6bba783aba
commit 443267a51b

View File

@@ -65,7 +65,7 @@ public class FundServiceImpl implements FundService{
if (StringUtils.isNotBlank(resp)) {
QueryFundListResponse response = JSONObject.parseObject(resp, QueryFundListResponse.class);
if (Objects.nonNull(response)) {
if (Objects.equals(SUCCESS_0, response.getCode())) {
if (Objects.equals(SUCCESS_200, response.getCode())) {
return response.getData();
}
}