tudc 4 年之前
父节点
当前提交
9278899988
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/main/java/com/minpay/reportManage/action/ReportManageAction.java

+ 1 - 2
src/main/java/com/minpay/reportManage/action/ReportManageAction.java

@@ -397,12 +397,11 @@ public class ReportManageAction implements IMINAction {
     	utilDataInfExample.createCriteria().andReportTypeIdEqualTo(reportTypeId);
     	List<DwUtilDataInf> utilDataInfList = db.selectByExample(DwUtilDataInfMapper.class, utilDataInfExample);
     	if (utilDataInfList.size() != 0) {
-    		res.set("utilDataInf", utilDataInfList.get(0));
     		DwAlgorithmInfExample algorithmInfExample = new DwAlgorithmInfExample();
     		algorithmInfExample.createCriteria().andUtilDataIdEqualTo(utilDataInfList.get(0).getId());
     		List<DwAlgorithmInf> algorithmInflist = db.selectByExample(DwAlgorithmInfMapper.class, algorithmInfExample);
     		if (algorithmInflist.size() != 0) {
-    			res.set("algorithmInf", algorithmInflist.get(0));
+    			res.set("algorithmId", algorithmInflist.get(0).getId());
     		}
     	}