package com.whyc.service;
|
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
|
@Service
|
public class TestParamService {
|
|
|
|
public void callService(int seconds) throws InterruptedException {
|
//毫秒
|
int milliseconds = seconds * 1000;
|
int count = milliseconds/100;
|
for (int i = 0; i < count; i++) {
|
Thread.sleep(100);
|
}
|
}
|
}
|