zj
2024-06-03 7479d2c5169265cf29e432a30b22c31073106751
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.nq.pojo;
 
import java.math.BigDecimal;
 
 
public class SiteFuturesSetting {
    private Integer id;
    private BigDecimal buyMaxPercent;
    private BigDecimal forceSellPercent;
    private Integer buySameTimes;
    private Integer buySameNums;
    private Integer buyNumTimes;
    private Integer buyNumLots;
    /*强平提醒比例*/
    private BigDecimal forceStopRemindRatio;
 
    public SiteFuturesSetting(Integer id, BigDecimal buyMaxPercent, BigDecimal forceSellPercent, Integer buySameTimes, Integer buySameNums, Integer buyNumTimes, Integer buyNumLots, BigDecimal forceStopRemindRatio) {
        this.id = id;
        this.buyMaxPercent = buyMaxPercent;
        this.forceSellPercent = forceSellPercent;
        this.buySameTimes = buySameTimes;
        this.buySameNums = buySameNums;
        this.buyNumTimes = buyNumTimes;
        this.buyNumLots = buyNumLots;
        this.forceStopRemindRatio = forceStopRemindRatio;
    }
 
 
    public SiteFuturesSetting() {
    }
 
 
    public Integer getId() {
        return this.id;
    }
 
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public BigDecimal getBuyMaxPercent() {
        return this.buyMaxPercent;
    }
 
    public void setBuyMaxPercent(BigDecimal buyMaxPercent) {
        this.buyMaxPercent = buyMaxPercent;
    }
 
    public BigDecimal getForceSellPercent() {
        return this.forceSellPercent;
    }
 
    public void setForceSellPercent(BigDecimal forceSellPercent) {
        this.forceSellPercent = forceSellPercent;
    }
 
    public Integer getBuySameTimes() {
        return this.buySameTimes;
    }
 
    public void setBuySameTimes(Integer buySameTimes) {
        this.buySameTimes = buySameTimes;
    }
 
    public Integer getBuySameNums() {
        return this.buySameNums;
    }
 
    public void setBuySameNums(Integer buySameNums) {
        this.buySameNums = buySameNums;
    }
 
    public Integer getBuyNumTimes() {
        return this.buyNumTimes;
    }
 
    public void setBuyNumTimes(Integer buyNumTimes) {
        this.buyNumTimes = buyNumTimes;
    }
 
    public Integer getBuyNumLots() {
        return this.buyNumLots;
    }
 
    public void setBuyNumLots(Integer buyNumLots) {
        this.buyNumLots = buyNumLots;
    }
 
    public BigDecimal getForceStopRemindRatio() {
        return forceStopRemindRatio;
    }
 
    public void setForceStopRemindRatio(BigDecimal forceStopRemindRatio) {
        this.forceStopRemindRatio = forceStopRemindRatio;
    }
}