admin
2025-04-08 5c9991be21f57781573f04961ec511ac2938ea3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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);
 
    /// <summary>
    /// ¼ÓÈëºÚÃûµ¥
    /// </summary>
    /// <param name="code"></param>
    /// <returns></returns>
    static string add_black(string code);
};