ludc
2023-11-08 cd5a0765ea6a842852e460cc1bde6ad2b2fd6e93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.vci.ubcs.core.log.service.impl;
 
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 {
 
    }
 
 
}