|
@@ -154,10 +154,10 @@ public class TVerificationTaskDetailController extends BaseController
|
|
|
int idx = 0;
|
|
|
for(;idx < dataset.size(); idx++){
|
|
|
TVerificationTaskDetail data = dataset.get(idx);
|
|
|
- System.out.println(data.getResult1());
|
|
|
+// System.out.println(data.getResult1());
|
|
|
if(data.getResult1Id()==null){//不改动元器件id时可行
|
|
|
Long component_id1 = tVerificationTaskDetailService.setComponentId(data.getResult1());
|
|
|
- System.out.println(component_id1);
|
|
|
+// System.out.println(component_id1);
|
|
|
Long component_id2 = tVerificationTaskDetailService.setComponentId(data.getResult2());
|
|
|
Long component_id3 = tVerificationTaskDetailService.setComponentId(data.getResult3());
|
|
|
Long component_id4 = tVerificationTaskDetailService.setComponentId(data.getResult4());
|
|
@@ -184,7 +184,7 @@ public class TVerificationTaskDetailController extends BaseController
|
|
|
|
|
|
// todo wangruilin 后续测试的日志可以删除
|
|
|
logger.info(taskid.toString());
|
|
|
- System.out.println(taskid);
|
|
|
+// System.out.println(taskid);
|
|
|
|
|
|
getComponentIds(taskid);
|
|
|
Map<String, Object> objectMap=new HashMap<>();
|
|
@@ -217,7 +217,7 @@ public class TVerificationTaskDetailController extends BaseController
|
|
|
res.put("msg","任务"+taskid+"验证算法调用成功");
|
|
|
res.put("code",200);
|
|
|
// todo System.out.println System.out.println应该使用logger框架替换
|
|
|
- System.out.println(result);
|
|
|
+// System.out.println(result);
|
|
|
logger.info(result);
|
|
|
return res;
|
|
|
|