dashboard
repositories
filestore
activity
search
login
main
/
xinbi-new
本地新币代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
时间
zj
2025-03-07
5be80b796dd5885604aeab891e410b994b1d4dbe
[xinbi-new.git]
/
src
/
main
/
java
/
project
/
futures
/
job
/
FuturesOrderCalculationService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package project.futures.job;
import project.futures.FuturesOrder;
/**
* 交割合约盈亏计算
*/
public interface FuturesOrderCalculationService {
/*
* 订单盈亏计算
*/
public void saveCalculation(FuturesOrder order);
}