| | |
| | | |
| | | import com.vci.ubcs.core.log.service.ILogSystemService; |
| | | import com.vci.ubcs.log.entity.SystemLog; |
| | | import com.vci.ubcs.resource.bo.FileObjectBO; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.rmi.ServerException; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 本地系统日志 |
| | | * @author ludc |
| | | * @date 2023/10/31 15:39 |
| | | */ |
| | | @Service |
| | | public class LogSystemServiceImpl implements ILogSystemService { |
| | | |
| | | /** |
| | | * 获取本地日志列表 |
| | | */ |
| | | @Override |
| | | public List<SystemLog> getSystemLogList() { |
| | | |
| | |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public FileObjectBO downloadLogByServiceNameAndFileName(Map<String, String> condition) throws ServerException { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public void deleteLogFile(Map<String, String> condition) throws ServerException { |
| | | |
| | | } |
| | | |
| | | |
| | | } |