dashboard
repositories
filestore
activity
search
login
main
/
xinbi-new
本地新币代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
1
zj
2025-06-25
a0361e762fc672d844ef15e18db5971893cce2bf
[xinbi-new.git]
/
src
/
main
/
java
/
project
/
log
/
SysLogService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package project.log;
/**
* 系统日志
*/
public interface SysLogService {
/**
* 同步保存
*/
public void saveSync(SysLog entity);
/**
* 异步保存
*/
public void saveAsyn(SysLog entity);
}