1
zyy
2 days ago 01b3fecb2d1b03861a72d53a7afea6ca557a209c
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package com.nq.pojo;
 
import java.math.BigDecimal;
import java.util.Date;
 
public class StockFutures {
    private Integer id;
    private String futuresName;
    private String futuresCode;
    private String futuresGid;
    private String futuresUnit;
    private Integer futuresStandard;
    private String coinCode;
    private Integer homeShow;
    private Integer listShow;
    private Integer depositAmt;
    private Integer transFee;
    private Integer minNum;
    private Integer maxNum;
    private Integer transState;
    private String transAmBegin;
    private String transAmEnd;
    private String transPmBegin;
    private String transPmEnd;
    private Date addTime;
    private String tDesc;
    private String transPmBegin2;
    private String transPmEnd2;
    /*每点浮动价格*/
    private BigDecimal eachPoint;
 
    public StockFutures(Integer id, String futuresName, String futuresCode, String futuresGid, String futuresUnit, Integer futuresStandard, String coinCode, Integer homeShow, Integer listShow, Integer depositAmt, Integer transFee, Integer minNum, Integer maxNum, Integer transState, String transAmBegin, String transAmEnd, String transPmBegin, String transPmEnd, Date addTime, String tDesc, String transPmBegin2, String transPmEnd2,BigDecimal eachPoint) {
        this.id = id;
        this.futuresName = futuresName;
        this.futuresCode = futuresCode;
        this.futuresGid = futuresGid;
        this.futuresUnit = futuresUnit;
        this.futuresStandard = futuresStandard;
        this.coinCode = coinCode;
        this.homeShow = homeShow;
        this.listShow = listShow;
        this.depositAmt = depositAmt;
        this.transFee = transFee;
        this.minNum = minNum;
        this.maxNum = maxNum;
        this.transState = transState;
        this.transAmBegin = transAmBegin;
        this.transAmEnd = transAmEnd;
        this.transPmBegin = transPmBegin;
        this.transPmEnd = transPmEnd;
        this.addTime = addTime;
        this.tDesc = tDesc;
        this.transPmBegin2 = transPmBegin2;
        this.transPmEnd2 = transPmEnd2;
        this.eachPoint = eachPoint;
    }
 
    public StockFutures() {
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getFuturesName() {
        return futuresName;
    }
 
    public void setFuturesName(String futuresName) {
        this.futuresName = futuresName;
    }
 
    public String getFuturesCode() {
        return futuresCode;
    }
 
    public void setFuturesCode(String futuresCode) {
        this.futuresCode = futuresCode;
    }
 
    public String getFuturesGid() {
        return futuresGid;
    }
 
    public void setFuturesGid(String futuresGid) {
        this.futuresGid = futuresGid;
    }
 
    public String getFuturesUnit() {
        return futuresUnit;
    }
 
    public void setFuturesUnit(String futuresUnit) {
        this.futuresUnit = futuresUnit;
    }
 
    public Integer getFuturesStandard() {
        return futuresStandard;
    }
 
    public void setFuturesStandard(Integer futuresStandard) {
        this.futuresStandard = futuresStandard;
    }
 
    public String getCoinCode() {
        return coinCode;
    }
 
    public void setCoinCode(String coinCode) {
        this.coinCode = coinCode;
    }
 
    public Integer getHomeShow() {
        return homeShow;
    }
 
    public void setHomeShow(Integer homeShow) {
        this.homeShow = homeShow;
    }
 
    public Integer getListShow() {
        return listShow;
    }
 
    public void setListShow(Integer listShow) {
        this.listShow = listShow;
    }
 
    public Integer getDepositAmt() {
        return depositAmt;
    }
 
    public void setDepositAmt(Integer depositAmt) {
        this.depositAmt = depositAmt;
    }
 
    public Integer getTransFee() {
        return transFee;
    }
 
    public void setTransFee(Integer transFee) {
        this.transFee = transFee;
    }
 
    public Integer getMinNum() {
        return minNum;
    }
 
    public void setMinNum(Integer minNum) {
        this.minNum = minNum;
    }
 
    public Integer getMaxNum() {
        return maxNum;
    }
 
    public void setMaxNum(Integer maxNum) {
        this.maxNum = maxNum;
    }
 
    public Integer getTransState() {
        return transState;
    }
 
    public void setTransState(Integer transState) {
        this.transState = transState;
    }
 
    public String getTransAmBegin() {
        return transAmBegin;
    }
 
    public void setTransAmBegin(String transAmBegin) {
        this.transAmBegin = transAmBegin;
    }
 
    public String getTransAmEnd() {
        return transAmEnd;
    }
 
    public void setTransAmEnd(String transAmEnd) {
        this.transAmEnd = transAmEnd;
    }
 
    public String getTransPmBegin() {
        return transPmBegin;
    }
 
    public void setTransPmBegin(String transPmBegin) {
        this.transPmBegin = transPmBegin;
    }
 
    public String getTransPmEnd() {
        return transPmEnd;
    }
 
    public void setTransPmEnd(String transPmEnd) {
        this.transPmEnd = transPmEnd;
    }
 
    public Date getAddTime() {
        return addTime;
    }
 
    public void setAddTime(Date addTime) {
        this.addTime = addTime;
    }
 
    public String gettDesc() {
        return tDesc;
    }
 
    public void settDesc(String tDesc) {
        this.tDesc = tDesc;
    }
 
    public String getTransPmBegin2() {
        return transPmBegin2;
    }
 
    public void setTransPmBegin2(String transPmBegin2) {
        this.transPmBegin2 = transPmBegin2;
    }
 
    public String getTransPmEnd2() {
        return transPmEnd2;
    }
 
    public void setTransPmEnd2(String transPmEnd2) {
        this.transPmEnd2 = transPmEnd2;
    }
 
    public BigDecimal getEachPoint() {
        return eachPoint;
    }
 
    public void setEachPoint(BigDecimal eachPoint) {
        this.eachPoint = eachPoint;
    }
}