dashboard
repositories
filestore
activity
search
login
main
/
xinbi-new
本地新币代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
1
zj
2024-08-09
defbbc81145072e73cb51c6feb9d83936d9caa97
[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);
}