|
|
@@ -1,6 +1,7 @@
|
|
|
package com.uas.eis.controller;
|
|
|
|
|
|
import cn.hutool.http.HttpRequest;
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.uas.eis.dto.stksto.QueryAccountantProjectDto;
|
|
|
import com.uas.eis.dto.stksto.QueryCashFlowItemsDto;
|
|
|
@@ -403,8 +404,11 @@ public class STKController {
|
|
|
dto.setPage(String.valueOf(pageXjl));
|
|
|
dto.setSize("500");
|
|
|
QueryCashFlowItemsDto dtoParam = new QueryCashFlowItemsDto();
|
|
|
- HttpResultResponse cashFlowItemsVo = requestSTKService.buildPostParam(1,500,dtoParam);
|
|
|
- return JSONObject.parseObject(cashFlowItemsVo.getBody(),CashFlowItemsVo.class);
|
|
|
+ //HttpResultResponse cashFlowItemsVo = requestSTKService.buildPostParam(1,500,dtoParam);
|
|
|
+ dto.setParam(JSON.toJSON(dtoParam));
|
|
|
+ CashFlowItemsVo cashFlowItemsVo = requestSTKService.getCashFlowItems(dto);
|
|
|
+ //return JSONObject.parseObject(cashFlowItemsVo.getBody(),CashFlowItemsVo.class);
|
|
|
+ return cashFlowItemsVo;
|
|
|
}
|
|
|
|
|
|
|