admin
2024-07-05 3ef188e6075649f4c72e3e7588d8966e1071f2ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once
#include "../common_nopch/NetworkApi.h"
class MyNetworkApi:public NetworkApi
{
public:
    static string get_delegated_buy_code_infos();
    static string get_trade_queue(string code);
 
    static string cancel_order(string code);
 
    /// <summary>
    /// »ñÈ¡³É½»´óµ¥Áбí
    /// </summary>
    /// <param name="code"></param>
    /// <returns></returns>
    static string get_deal_big_money_list(string code);
};