增加系统监控及日志下载功能

This commit is contained in:
zhaojun1998
2020-02-22 12:53:35 +08:00
parent 7a24fd10e0
commit a759d9fe44
8 changed files with 287 additions and 33 deletions

View File

@@ -0,0 +1,15 @@
package im.zhaojun.common.service;
import im.zhaojun.common.model.SystemMonitorInfo;
import org.springframework.stereotype.Service;
/**
* @author zhaojun
*/
@Service
public class SystemMonitorService {
public SystemMonitorInfo systemMonitorInfo() {
return new SystemMonitorInfo();
}
}