dashboard
repositories
filestore
activity
search
login
main
/
xinbi-new
本地新币代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
代码迁移推送
zj
2024-06-03
3603ecb207f7e712c635f19531e05fac4d19e53f
[xinbi-new.git]
/
src
/
main
/
java
/
project
/
log
/
CodeLogService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package project.log;
import java.io.Serializable;
public interface CodeLogService {
/**
* 同步保存
*/
public void saveSync(CodeLog entity);
/**
* 异步保存
*/
public void saveAsyn(CodeLog entity);
}