|
@@ -72,7 +72,7 @@ public class InterlockDetailController extends JeecgController<InterlockDetail,
|
|
|
long duration = endTime - startTime;
|
|
|
String log = "联锁逻辑状态-分页列表查询程序运行时间(毫秒):" + duration;
|
|
|
System.out.println(log);
|
|
|
- interlockDetailMapper.insertIntoTimeTestLog("联锁逻辑状态",duration);
|
|
|
+// interlockDetailMapper.insertIntoTimeTestLog("联锁逻辑状态",duration);
|
|
|
return Result.OK(pageList);
|
|
|
|
|
|
}
|
|
@@ -91,7 +91,7 @@ public class InterlockDetailController extends JeecgController<InterlockDetail,
|
|
|
long duration = endTime - startTime;
|
|
|
String log = "原联锁逻辑状态-分页列表查询程序运行时间(毫秒):" + duration;
|
|
|
System.out.println(log);
|
|
|
- interlockDetailMapper.insertIntoTimeTestLog("原联锁逻辑状态",duration);
|
|
|
+// interlockDetailMapper.insertIntoTimeTestLog("原联锁逻辑状态",duration);
|
|
|
return Result.OK(pageList);
|
|
|
|
|
|
}
|
|
@@ -114,7 +114,7 @@ public class InterlockDetailController extends JeecgController<InterlockDetail,
|
|
|
long duration = endTime - startTime;
|
|
|
String log = "联锁详细信息程序运行时间(毫秒):" + duration;
|
|
|
System.out.println(log);
|
|
|
- interlockDetailMapper.insertIntoTimeTestLog("联锁详细信息",duration);
|
|
|
+// interlockDetailMapper.insertIntoTimeTestLog("联锁详细信息",duration);
|
|
|
return Result.OK(pageList);
|
|
|
}
|
|
|
|