|
@@ -8,6 +8,7 @@ import cn.hutool.core.util.StrUtil;
|
|
|
import cn.hutool.http.HttpUtil;
|
|
|
import cn.hutool.json.JSONObject;
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
+import com.simuwang.base.pojo.dto.report.PythonResult;
|
|
|
import com.simuwang.daq.components.CustomPDFTextStripper;
|
|
|
import com.simuwang.daq.dto.ReportFundInfo;
|
|
|
import com.smppw.common.pojo.ValueLabelVO;
|
|
@@ -60,6 +61,7 @@ public class ReportParseUtil {
|
|
|
params.put("trust_name", null);
|
|
|
String body = HttpUtil.post(baseUrl + api, JSONUtil.toJsonStr(params));
|
|
|
JSONObject obj = JSONUtil.parseObj(body);
|
|
|
+ PythonResult<?> result = JSONUtil.toBean(JSONUtil.toJsonStr(body), PythonResult.class);
|
|
|
System.out.println(obj);
|
|
|
|
|
|
// List<ValueLabelVO> fieldMapper = ListUtil.list(false);
|