1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.vci.ubcs.core.log.service.impl;
|
| import com.vci.ubcs.core.log.service.ILogSystemService;
| import com.vci.ubcs.log.entity.SystemLog;
|
| import java.util.List;
|
| /**
| * 本地系统日志
| * @author ludc
| * @date 2023/10/31 15:39
| */
| public class LogSystemServiceImpl implements ILogSystemService {
|
| @Override
| public List<SystemLog> getSystemLogList() {
|
|
| return null;
| }
|
|
| }
|
|