peternameyakj
2025-04-29 acf1c75a32aa05f34d9d60b6ae3f3e052b532e9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package project.futures;
 
import java.util.Map;
 
import kernel.web.Page;
import project.item.model.Item;
 
public interface AdminContractManageService {
    /**
     * 添加合约产品
     */
    public String addContractItem(Item entity);
    
    public Map<String,String> getFuturesSymbols();
    
    public String addFutures(FuturesPara entity,String ip,String operaUsername,String loginSafeword);
    
    public void deleteFuturesPara(String id,String ip,String operaUsername,String loginSafeword,String superGoogleAuthCode);
}