dashboard
repositories
filestore
activity
search
login
main
/
exchange
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat(ws): 添加订单更新ID日志记录功能
Administrator
2026-05-19
2af15077fb2e66500e955ffebc44ecad42e2dd66
[exchange.git]
/
src
/
main
/
java
/
com
/
xcong
/
excoin
/
modules
/
contract
/
service
/
RabbitOrderService.java
1
2
3
4
5
6
7
8
9
10
11
12
package com.xcong.excoin.modules.contract.service;
import java.util.List;
/**
* @author helius
*/
public interface RabbitOrderService {
public void cancelHoldOrder(List<Long> ids);
}