|
@@ -1871,39 +1871,39 @@ public class JavaFunctionJobHandler extends IJobHandler {
|
|
|
|
|
|
|
|
|
for (ProEconReportIndicatorPool pool : list) {
|
|
|
-
|
|
|
rfdl += pool.getRfdldb();
|
|
|
swdl += pool.getRswdldb();
|
|
|
gwdl += pool.getRgwgwdldb();
|
|
|
zhcydl += pool.getRzhcydldb();
|
|
|
- yfdl += pool.getYfdcydldb();
|
|
|
+ yfdl += pool.getYfdldb();
|
|
|
yswdl += pool.getYswdldb();
|
|
|
ygwdl += pool.getYgwgwdldb();
|
|
|
yzhcydl += pool.getYzhcydldb();
|
|
|
- nfdl += pool.getNfdcydldb();
|
|
|
+ nfdl += pool.getNfdldb();
|
|
|
nswdl += pool.getNswdldb();
|
|
|
ngwdl += pool.getNgwgwdldb();
|
|
|
nzhcydl += pool.getNzhcydldb();
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ QueryWrapper<ProEconReportIndicatorPool> wrapperrp2 = new QueryWrapper<>();
|
|
|
+ wrapperrp2.eq("record_date", time0).eq("foreign_key_id", "GJNY_SXGS_DBXNY_ZGS0");
|
|
|
+ ProEconReportIndicatorPool GSZB = reportIndicatorPoolService.getOne(wrapperrp2);
|
|
|
//公司指标集合
|
|
|
- ArrayList<ProEconReportIndicatorPool> list1 = new ArrayList<>();
|
|
|
- ProEconReportIndicatorPool GSZB = new ProEconReportIndicatorPool();
|
|
|
GSZB.setRfdldb(rfdl);
|
|
|
GSZB.setRswdldb(swdl);
|
|
|
GSZB.setRgwgwdldb(gwdl);
|
|
|
GSZB.setRzhcydldb(zhcydl);
|
|
|
- GSZB.setYfdcydldb(yfdl);
|
|
|
+ GSZB.setYfdldb(yfdl);
|
|
|
GSZB.setYswdldb(yswdl);
|
|
|
GSZB.setYgwgwdldb(ygwdl);
|
|
|
GSZB.setYzhcydldb(yzhcydl);
|
|
|
- GSZB.setNfdcydldb(nfdl);
|
|
|
+ GSZB.setNfdldb(nfdl);
|
|
|
GSZB.setNswdldb(nswdl);
|
|
|
GSZB.setNgwgwdldb(ngwdl);
|
|
|
GSZB.setNzhcydldb(nzhcydl);
|
|
|
- list1.add(GSZB);
|
|
|
- reportIndicatorPoolService.saveOrUpdateBatch(list1);
|
|
|
+
|
|
|
+ reportIndicatorPoolService.saveOrUpdate(GSZB);
|
|
|
+
|
|
|
|
|
|
|
|
|
}
|