whycxzp
2023-12-20 14912f45bdce261601e1476b8bd4a3a502d09d52
src/main/java/com/whyc/service/TestParamService.java
@@ -25,4 +25,13 @@
        mapper.updateById(param);
    }
    public void callService(int seconds) throws InterruptedException {
        //毫秒
        int milliseconds = seconds * 1000;
        int count = milliseconds/100;
        for (int i = 0; i < count; i++) {
            getFactorsAndThreshold();
            Thread.sleep(100);
        }
    }
}