admin
8 天以前 6cd92a169cbc0db35042f243a09d976fd3e1445c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#pragma once
#include <afxstr.h>
#include <string>
#include<list>
#include<map>
using namespace std;
struct SellRule
{
    CString id_;
    CString code;
    int buy1_volume;
    //Âò1¼Û¸ñ
    CString buy1_price;
    //ÂôÁ¿
    int sell_volume;
    //Âô¼Û¸ñÀàÐÍ
    int sell_price_type;
    CString create_time;
    int excuted;
    CString day;
    CString end_time;
    // 0-Âò 1-Âò³· 2-Âô 3-Âô³·
    int type;
};
 
struct Buy1Info {
    int volume;
    double price;
};
 
 
struct TimeMoney {
    CString time;
    int money;
    int count;
    int defaultCount;
};
 
struct BuyDataSettings
{
    int normalCount;
    list<TimeMoney> normalMoneyList;
    int radicalCount;
    list<TimeMoney> radicalMoneyList;
    int defaultBuyMoney;
};
 
 
struct RadicalBuyBlockInfo {
    CString blockName;
    int count;
};
 
struct LowSuctionCodeInfo {
    string code;
    string name;
};
 
struct LowSuctionQueue
{
    string id;
    string code;//´úÂë
    string name;// Ãû³Æ
    string time_str;// Ê±¼ä
    list<string> plates;// °å¿é
    string bigOrderInfo;// ´óµ¥ÐÅÏ¢
    map<string, list<LowSuctionCodeInfo>> plateLimitUpCodes; // °å¿éÕÇÍ£´úÂë
};