1
zj
2026-01-11 e17f787bb9450a90ec4d0731ca068b8284f044b2
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
package com.nq.pojo;
 
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.beans.ConstructorProperties;
import java.math.BigDecimal;
@Data
 
public class SiteSetting {
    private Integer id;
 
    private BigDecimal buyFee;
 
    private BigDecimal sellFee;
 
    private BigDecimal stayFee;
 
    private BigDecimal dutyFee;
 
    private Integer stayMaxDays;
 
    private Integer buyMinAmt;
 
    private Integer chargeMinAmt;
 
    private Integer buyMinNum;
 
    private BigDecimal forceStopFee;
 
    private BigDecimal buyMaxAmtPercent;
 
    private BigDecimal forceStopPercent;
 
    private BigDecimal hightAndLow;
 
    private Integer withMinAmt;
 
    private BigDecimal creaseMaxPercent;
 
    private Integer buyMaxNum;
 
    private Integer withTimeBegin;
 
    private Integer withTimeEnd;
 
    private String transAmBegin;
 
    private String transAmEnd;
 
    private String transPmBegin;
 
    private String transPmEnd;
 
    private String transAmBeginUs;
 
    private String transAmEndUs;
 
    private String transPmBeginUs;
 
    private String transPmEndUs;
 
    private Integer withFeeSingle;
 
    private BigDecimal withFeePercent;
 
    private String siteLever;
 
    private Integer buySameTimes;
 
    private Integer buySameNums;
 
    private Integer buyNumTimes;
 
    private Integer buyNumLots;
 
    private Integer cantSellTimes;
 
    private BigDecimal kcCreaseMaxPercent;
 
    private Integer stockDays;
 
    private BigDecimal stockRate;
 
    private BigDecimal stockChaa;
 
    private BigDecimal stockChab;
 
    private BigDecimal stockChac;
 
    private BigDecimal forceStopRemindRatio;
 
    private BigDecimal cyCreaseMaxPercent;
 
    private Byte fallBuyDisplay;
 
    private String transAmBeginHk;
 
    private String transAmEndHk;
 
    private String transPmBeginHk;
 
    private String transPmEndHk;
 
    private BigDecimal vipQcMaxAmt;
 
    private BigDecimal hkExchangeRate;
 
    public SiteSetting(Integer id, BigDecimal buyFee, BigDecimal sellFee, BigDecimal stayFee, BigDecimal dutyFee, Integer stayMaxDays, Integer buyMinAmt, Integer chargeMinAmt, Integer buyMinNum, BigDecimal forceStopFee, BigDecimal buyMaxAmtPercent, BigDecimal forceStopPercent, BigDecimal hightAndLow, Integer withMinAmt, BigDecimal creaseMaxPercent, Integer buyMaxNum, Integer withTimeBegin, Integer withTimeEnd, String transAmBegin, String transAmEnd, String transPmBegin, String transPmEnd, String transAmBeginUs, String transAmEndUs, String transPmBeginUs, String transPmEndUs, Integer withFeeSingle, BigDecimal withFeePercent, String siteLever, Integer buySameTimes, Integer buySameNums, Integer buyNumTimes, Integer buyNumLots, Integer cantSellTimes, BigDecimal kcCreaseMaxPercent, Integer stockDays, BigDecimal stockRate, BigDecimal stockChaa, BigDecimal stockChab, BigDecimal stockChac, BigDecimal forceStopRemindRatio, BigDecimal cyCreaseMaxPercent, Byte fallBuyDisplay, String transAmBeginHk, String transAmEndHk, String transPmBeginHk, String transPmEndHk, BigDecimal vipQcMaxAmt, BigDecimal hkExchangeRate) {
        this.id = id;
        this.buyFee = buyFee;
        this.sellFee = sellFee;
        this.stayFee = stayFee;
        this.dutyFee = dutyFee;
        this.stayMaxDays = stayMaxDays;
        this.buyMinAmt = buyMinAmt;
        this.chargeMinAmt = chargeMinAmt;
        this.buyMinNum = buyMinNum;
        this.forceStopFee = forceStopFee;
        this.buyMaxAmtPercent = buyMaxAmtPercent;
        this.forceStopPercent = forceStopPercent;
        this.hightAndLow = hightAndLow;
        this.withMinAmt = withMinAmt;
        this.creaseMaxPercent = creaseMaxPercent;
        this.buyMaxNum = buyMaxNum;
        this.withTimeBegin = withTimeBegin;
        this.withTimeEnd = withTimeEnd;
        this.transAmBegin = transAmBegin;
        this.transAmEnd = transAmEnd;
        this.transPmBegin = transPmBegin;
        this.transPmEnd = transPmEnd;
        this.transAmBeginUs = transAmBeginUs;
        this.transAmEndUs = transAmEndUs;
        this.transPmBeginUs = transPmBeginUs;
        this.transPmEndUs = transPmEndUs;
        this.withFeeSingle = withFeeSingle;
        this.withFeePercent = withFeePercent;
        this.siteLever = siteLever;
        this.buySameTimes = buySameTimes;
        this.buySameNums = buySameNums;
        this.buyNumTimes = buyNumTimes;
        this.buyNumLots = buyNumLots;
        this.cantSellTimes = cantSellTimes;
        this.kcCreaseMaxPercent = kcCreaseMaxPercent;
        this.stockDays = stockDays;
        this.stockRate = stockRate;
        this.stockChaa = stockChaa;
        this.stockChab = stockChab;
        this.stockChac = stockChac;
        this.forceStopRemindRatio = forceStopRemindRatio;
        this.cyCreaseMaxPercent = cyCreaseMaxPercent;
        this.fallBuyDisplay = fallBuyDisplay;
        this.transAmBeginHk = transAmBeginHk;
        this.transAmEndHk = transAmEndHk;
        this.transPmBeginHk = transPmBeginHk;
        this.transPmEndHk = transPmEndHk;
        this.vipQcMaxAmt = vipQcMaxAmt;
        this.hkExchangeRate = hkExchangeRate;
    }
 
 
    public BigDecimal getHkExchangeRate() {
        return hkExchangeRate;
    }
 
    public void setHkExchangeRate(BigDecimal hkExchangeRate) {
        this.hkExchangeRate = hkExchangeRate;
    }
 
    public void setBuyFee(BigDecimal buyFee) {
        this.buyFee = buyFee;
    }
 
    public void setSellFee(BigDecimal sellFee) {
        this.sellFee = sellFee;
    }
 
    public void setStayFee(BigDecimal stayFee) {
        this.stayFee = stayFee;
    }
 
    public void setDutyFee(BigDecimal dutyFee) {
        this.dutyFee = dutyFee;
    }
 
    public void setStayMaxDays(Integer stayMaxDays) {
        this.stayMaxDays = stayMaxDays;
    }
 
    public void setBuyMinAmt(Integer buyMinAmt) {
        this.buyMinAmt = buyMinAmt;
    }
 
    public void setChargeMinAmt(Integer chargeMinAmt) {
        this.chargeMinAmt = chargeMinAmt;
    }
 
    public void setBuyMinNum(Integer buyMinNum) {
        this.buyMinNum = buyMinNum;
    }
 
    public void setForceStopFee(BigDecimal forceStopFee) {
        this.forceStopFee = forceStopFee;
    }
 
    public void setBuyMaxAmtPercent(BigDecimal buyMaxAmtPercent) {
        this.buyMaxAmtPercent = buyMaxAmtPercent;
    }
 
    public void setForceStopPercent(BigDecimal forceStopPercent) {
        this.forceStopPercent = forceStopPercent;
    }
 
    public void setHightAndLow(BigDecimal hightAndLow) {
        this.hightAndLow = hightAndLow;
    }
 
    public void setWithMinAmt(Integer withMinAmt) {
        this.withMinAmt = withMinAmt;
    }
 
    public void setCreaseMaxPercent(BigDecimal creaseMaxPercent) {
        this.creaseMaxPercent = creaseMaxPercent;
    }
 
    public void setBuyMaxNum(Integer buyMaxNum) {
        this.buyMaxNum = buyMaxNum;
    }
 
    public void setWithTimeBegin(Integer withTimeBegin) {
        this.withTimeBegin = withTimeBegin;
    }
 
    public void setWithTimeEnd(Integer withTimeEnd) {
        this.withTimeEnd = withTimeEnd;
    }
 
    public void setTransAmBegin(String transAmBegin) {
        this.transAmBegin = transAmBegin;
    }
 
    public void setTransAmEnd(String transAmEnd) {
        this.transAmEnd = transAmEnd;
    }
 
    public void setTransPmBegin(String transPmBegin) {
        this.transPmBegin = transPmBegin;
    }
 
    public void setTransPmEnd(String transPmEnd) {
        this.transPmEnd = transPmEnd;
    }
 
    public void setWithFeeSingle(Integer withFeeSingle) {
        this.withFeeSingle = withFeeSingle;
    }
 
    public void setWithFeePercent(BigDecimal withFeePercent) {
        this.withFeePercent = withFeePercent;
    }
 
    public void setSiteLever(String siteLever) {
        this.siteLever = siteLever;
    }
 
    public void setBuySameTimes(Integer buySameTimes) {
        this.buySameTimes = buySameTimes;
    }
 
    public void setBuySameNums(Integer buySameNums) {
        this.buySameNums = buySameNums;
    }
 
    public void setBuyNumTimes(Integer buyNumTimes) {
        this.buyNumTimes = buyNumTimes;
    }
 
    public void setBuyNumLots(Integer buyNumLots) {
        this.buyNumLots = buyNumLots;
    }
 
    public void setCantSellTimes(Integer cantSellTimes) {
        this.cantSellTimes = cantSellTimes;
    }
 
    public void setKcCreaseMaxPercent(BigDecimal kcCreaseMaxPercent) {
        this.kcCreaseMaxPercent = kcCreaseMaxPercent;
    }
 
    public void setStockDays(Integer stockDays) {
        this.stockDays = stockDays;
    }
 
    public void setStockRate(BigDecimal stockRate) {
        this.stockRate = stockRate;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof SiteSetting)) return false;
        SiteSetting other = (SiteSetting) o;
        if (!other.canEqual(this)) return false;
        Object this$id = getId(), other$id = other.getId();
        if ((this$id == null) ? (other$id != null) : !this$id.equals(other$id)) return false;
        Object this$buyFee = getBuyFee(), other$buyFee = other.getBuyFee();
        if ((this$buyFee == null) ? (other$buyFee != null) : !this$buyFee.equals(other$buyFee)) return false;
        Object this$sellFee = getSellFee(), other$sellFee = other.getSellFee();
        if ((this$sellFee == null) ? (other$sellFee != null) : !this$sellFee.equals(other$sellFee)) return false;
        Object this$stayFee = getStayFee(), other$stayFee = other.getStayFee();
        if ((this$stayFee == null) ? (other$stayFee != null) : !this$stayFee.equals(other$stayFee)) return false;
        Object this$dutyFee = getDutyFee(), other$dutyFee = other.getDutyFee();
        if ((this$dutyFee == null) ? (other$dutyFee != null) : !this$dutyFee.equals(other$dutyFee)) return false;
        Object this$stayMaxDays = getStayMaxDays(), other$stayMaxDays = other.getStayMaxDays();
        if ((this$stayMaxDays == null) ? (other$stayMaxDays != null) : !this$stayMaxDays.equals(other$stayMaxDays))
            return false;
        Object this$buyMinAmt = getBuyMinAmt(), other$buyMinAmt = other.getBuyMinAmt();
        if ((this$buyMinAmt == null) ? (other$buyMinAmt != null) : !this$buyMinAmt.equals(other$buyMinAmt))
            return false;
        Object this$chargeMinAmt = getChargeMinAmt(), other$chargeMinAmt = other.getChargeMinAmt();
        if ((this$chargeMinAmt == null) ? (other$chargeMinAmt != null) : !this$chargeMinAmt.equals(other$chargeMinAmt))
            return false;
        Object this$buyMinNum = getBuyMinNum(), other$buyMinNum = other.getBuyMinNum();
        if ((this$buyMinNum == null) ? (other$buyMinNum != null) : !this$buyMinNum.equals(other$buyMinNum))
            return false;
        Object this$forceStopFee = getForceStopFee(), other$forceStopFee = other.getForceStopFee();
        if ((this$forceStopFee == null) ? (other$forceStopFee != null) : !this$forceStopFee.equals(other$forceStopFee))
            return false;
        Object this$buyMaxAmtPercent = getBuyMaxAmtPercent(), other$buyMaxAmtPercent = other.getBuyMaxAmtPercent();
        if ((this$buyMaxAmtPercent == null) ? (other$buyMaxAmtPercent != null) : !this$buyMaxAmtPercent.equals(other$buyMaxAmtPercent))
            return false;
        Object this$forceStopPercent = getForceStopPercent(), other$forceStopPercent = other.getForceStopPercent();
        if ((this$forceStopPercent == null) ? (other$forceStopPercent != null) : !this$forceStopPercent.equals(other$forceStopPercent))
            return false;
        Object this$hightAndLow = getHightAndLow(), other$hightAndLow = other.getHightAndLow();
        if ((this$hightAndLow == null) ? (other$hightAndLow != null) : !this$hightAndLow.equals(other$hightAndLow))
            return false;
        Object this$withMinAmt = getWithMinAmt(), other$withMinAmt = other.getWithMinAmt();
        if ((this$withMinAmt == null) ? (other$withMinAmt != null) : !this$withMinAmt.equals(other$withMinAmt))
            return false;
        Object this$creaseMaxPercent = getCreaseMaxPercent(), other$creaseMaxPercent = other.getCreaseMaxPercent();
        if ((this$creaseMaxPercent == null) ? (other$creaseMaxPercent != null) : !this$creaseMaxPercent.equals(other$creaseMaxPercent))
            return false;
        Object this$buyMaxNum = getBuyMaxNum(), other$buyMaxNum = other.getBuyMaxNum();
        if ((this$buyMaxNum == null) ? (other$buyMaxNum != null) : !this$buyMaxNum.equals(other$buyMaxNum))
            return false;
        Object this$withTimeBegin = getWithTimeBegin(), other$withTimeBegin = other.getWithTimeBegin();
        if ((this$withTimeBegin == null) ? (other$withTimeBegin != null) : !this$withTimeBegin.equals(other$withTimeBegin))
            return false;
        Object this$withTimeEnd = getWithTimeEnd(), other$withTimeEnd = other.getWithTimeEnd();
        if ((this$withTimeEnd == null) ? (other$withTimeEnd != null) : !this$withTimeEnd.equals(other$withTimeEnd))
            return false;
        Object this$transAmBegin = getTransAmBegin(), other$transAmBegin = other.getTransAmBegin();
        if ((this$transAmBegin == null) ? (other$transAmBegin != null) : !this$transAmBegin.equals(other$transAmBegin))
            return false;
        Object this$transAmEnd = getTransAmEnd(), other$transAmEnd = other.getTransAmEnd();
        if ((this$transAmEnd == null) ? (other$transAmEnd != null) : !this$transAmEnd.equals(other$transAmEnd))
            return false;
        Object this$transPmBegin = getTransPmBegin(), other$transPmBegin = other.getTransPmBegin();
        if ((this$transPmBegin == null) ? (other$transPmBegin != null) : !this$transPmBegin.equals(other$transPmBegin))
            return false;
        Object this$transPmEnd = getTransPmEnd(), other$transPmEnd = other.getTransPmEnd();
        if ((this$transPmEnd == null) ? (other$transPmEnd != null) : !this$transPmEnd.equals(other$transPmEnd))
            return false;
        Object this$withFeeSingle = getWithFeeSingle(), other$withFeeSingle = other.getWithFeeSingle();
        if ((this$withFeeSingle == null) ? (other$withFeeSingle != null) : !this$withFeeSingle.equals(other$withFeeSingle))
            return false;
        Object this$withFeePercent = getWithFeePercent(), other$withFeePercent = other.getWithFeePercent();
        if ((this$withFeePercent == null) ? (other$withFeePercent != null) : !this$withFeePercent.equals(other$withFeePercent))
            return false;
        Object this$siteLever = getSiteLever(), other$siteLever = other.getSiteLever();
        if ((this$siteLever == null) ? (other$siteLever != null) : !this$siteLever.equals(other$siteLever))
            return false;
        Object this$buySameTimes = getBuySameTimes(), other$buySameTimes = other.getBuySameTimes();
        if ((this$buySameTimes == null) ? (other$buySameTimes != null) : !this$buySameTimes.equals(other$buySameTimes))
            return false;
        Object this$buySameNums = getBuySameNums(), other$buySameNums = other.getBuySameNums();
        if ((this$buySameNums == null) ? (other$buySameNums != null) : !this$buySameNums.equals(other$buySameNums))
            return false;
        Object this$buyNumTimes = getBuyNumTimes(), other$buyNumTimes = other.getBuyNumTimes();
        if ((this$buyNumTimes == null) ? (other$buyNumTimes != null) : !this$buyNumTimes.equals(other$buyNumTimes))
            return false;
        Object this$buyNumLots = getBuyNumLots(), other$buyNumLots = other.getBuyNumLots();
        if ((this$buyNumLots == null) ? (other$buyNumLots != null) : !this$buyNumLots.equals(other$buyNumLots))
            return false;
        Object this$cantSellTimes = getCantSellTimes(), other$cantSellTimes = other.getCantSellTimes();
        if ((this$cantSellTimes == null) ? (other$cantSellTimes != null) : !this$cantSellTimes.equals(other$cantSellTimes))
            return false;
        Object this$kcCreaseMaxPercent = getKcCreaseMaxPercent(), other$kcCreaseMaxPercent = other.getKcCreaseMaxPercent();
        if ((this$kcCreaseMaxPercent == null) ? (other$kcCreaseMaxPercent != null) : !this$kcCreaseMaxPercent.equals(other$kcCreaseMaxPercent))
            return false;
        Object this$stockDays = getStockDays(), other$stockDays = other.getStockDays();
        if ((this$stockDays == null) ? (other$stockDays != null) : !this$stockDays.equals(other$stockDays))
            return false;
        Object this$stockRate = getStockRate(), other$stockRate = other.getStockRate();
        return !((this$stockRate == null) ? (other$stockRate != null) : !this$stockRate.equals(other$stockRate));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof SiteSetting;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $id = getId();
        result = result * 59 + (($id == null) ? 43 : $id.hashCode());
        Object $buyFee = getBuyFee();
        result = result * 59 + (($buyFee == null) ? 43 : $buyFee.hashCode());
        Object $sellFee = getSellFee();
        result = result * 59 + (($sellFee == null) ? 43 : $sellFee.hashCode());
        Object $stayFee = getStayFee();
        result = result * 59 + (($stayFee == null) ? 43 : $stayFee.hashCode());
        Object $dutyFee = getDutyFee();
        result = result * 59 + (($dutyFee == null) ? 43 : $dutyFee.hashCode());
        Object $stayMaxDays = getStayMaxDays();
        result = result * 59 + (($stayMaxDays == null) ? 43 : $stayMaxDays.hashCode());
        Object $buyMinAmt = getBuyMinAmt();
        result = result * 59 + (($buyMinAmt == null) ? 43 : $buyMinAmt.hashCode());
        Object $chargeMinAmt = getChargeMinAmt();
        result = result * 59 + (($chargeMinAmt == null) ? 43 : $chargeMinAmt.hashCode());
        Object $buyMinNum = getBuyMinNum();
        result = result * 59 + (($buyMinNum == null) ? 43 : $buyMinNum.hashCode());
        Object $forceStopFee = getForceStopFee();
        result = result * 59 + (($forceStopFee == null) ? 43 : $forceStopFee.hashCode());
        Object $buyMaxAmtPercent = getBuyMaxAmtPercent();
        result = result * 59 + (($buyMaxAmtPercent == null) ? 43 : $buyMaxAmtPercent.hashCode());
        Object $forceStopPercent = getForceStopPercent();
        result = result * 59 + (($forceStopPercent == null) ? 43 : $forceStopPercent.hashCode());
        Object $hightAndLow = getHightAndLow();
        result = result * 59 + (($hightAndLow == null) ? 43 : $hightAndLow.hashCode());
        Object $withMinAmt = getWithMinAmt();
        result = result * 59 + (($withMinAmt == null) ? 43 : $withMinAmt.hashCode());
        Object $creaseMaxPercent = getCreaseMaxPercent();
        result = result * 59 + (($creaseMaxPercent == null) ? 43 : $creaseMaxPercent.hashCode());
        Object $buyMaxNum = getBuyMaxNum();
        result = result * 59 + (($buyMaxNum == null) ? 43 : $buyMaxNum.hashCode());
        Object $withTimeBegin = getWithTimeBegin();
        result = result * 59 + (($withTimeBegin == null) ? 43 : $withTimeBegin.hashCode());
        Object $withTimeEnd = getWithTimeEnd();
        result = result * 59 + (($withTimeEnd == null) ? 43 : $withTimeEnd.hashCode());
        Object $transAmBegin = getTransAmBegin();
        result = result * 59 + (($transAmBegin == null) ? 43 : $transAmBegin.hashCode());
        Object $transAmEnd = getTransAmEnd();
        result = result * 59 + (($transAmEnd == null) ? 43 : $transAmEnd.hashCode());
        Object $transPmBegin = getTransPmBegin();
        result = result * 59 + (($transPmBegin == null) ? 43 : $transPmBegin.hashCode());
        Object $transPmEnd = getTransPmEnd();
        result = result * 59 + (($transPmEnd == null) ? 43 : $transPmEnd.hashCode());
        Object $withFeeSingle = getWithFeeSingle();
        result = result * 59 + (($withFeeSingle == null) ? 43 : $withFeeSingle.hashCode());
        Object $withFeePercent = getWithFeePercent();
        result = result * 59 + (($withFeePercent == null) ? 43 : $withFeePercent.hashCode());
        Object $siteLever = getSiteLever();
        result = result * 59 + (($siteLever == null) ? 43 : $siteLever.hashCode());
        Object $buySameTimes = getBuySameTimes();
        result = result * 59 + (($buySameTimes == null) ? 43 : $buySameTimes.hashCode());
        Object $buySameNums = getBuySameNums();
        result = result * 59 + (($buySameNums == null) ? 43 : $buySameNums.hashCode());
        Object $buyNumTimes = getBuyNumTimes();
        result = result * 59 + (($buyNumTimes == null) ? 43 : $buyNumTimes.hashCode());
        Object $buyNumLots = getBuyNumLots();
        result = result * 59 + (($buyNumLots == null) ? 43 : $buyNumLots.hashCode());
        Object $cantSellTimes = getCantSellTimes();
        result = result * 59 + (($cantSellTimes == null) ? 43 : $cantSellTimes.hashCode());
        Object $kcCreaseMaxPercent = getKcCreaseMaxPercent();
        result = result * 59 + (($kcCreaseMaxPercent == null) ? 43 : $kcCreaseMaxPercent.hashCode());
        Object $stockDays = getStockDays();
        result = result * 59 + (($stockDays == null) ? 43 : $stockDays.hashCode());
        Object $stockRate = getStockRate();
        return result * 59 + (($stockRate == null) ? 43 : $stockRate.hashCode());
    }
 
    public String toString() {
        return "SiteSetting(id=" + getId() + ", buyFee=" + getBuyFee() + ", sellFee=" + getSellFee() + ", stayFee=" + getStayFee() + ", dutyFee=" + getDutyFee() +", stayMaxDays=" + getStayMaxDays() + ", buyMinAmt=" + getBuyMinAmt() + ", chargeMinAmt=" + getChargeMinAmt() + ", buyMinNum=" + getBuyMinNum() + ", forceStopFee=" + getForceStopFee() + ", buyMaxAmtPercent=" + getBuyMaxAmtPercent() + ", forceStopPercent=" + getForceStopPercent() + ", hightAndLow=" + getHightAndLow() + ", withMinAmt=" + getWithMinAmt() + ", creaseMaxPercent=" + getCreaseMaxPercent() + ", buyMaxNum=" + getBuyMaxNum() + ", withTimeBegin=" + getWithTimeBegin() + ", withTimeEnd=" + getWithTimeEnd() + ", transAmBegin=" + getTransAmBegin() + ", transAmEnd=" + getTransAmEnd() + ", transPmBegin=" + getTransPmBegin() + ", transPmEnd=" + getTransPmEnd() +", transAmBeginUs=" + getTransAmBeginUs() + ", transAmEndUs=" + getTransAmEndUs() + ", transPmBeginUs=" + getTransPmBeginUs() + ", transPmEndUs=" + getTransPmEndUs() + ", withFeeSingle=" + getWithFeeSingle() + ", withFeePercent=" + getWithFeePercent() + ", siteLever=" + getSiteLever() + ", buySameTimes=" + getBuySameTimes() + ", buySameNums=" + getBuySameNums() + ", buyNumTimes=" + getBuyNumTimes() + ", buyNumLots=" + getBuyNumLots() + ", cantSellTimes=" + getCantSellTimes() + ", kcCreaseMaxPercent=" + getKcCreaseMaxPercent() + ", stockDays=" + getStockDays() + ", stockRate=" + getStockRate() + ", forceStopRemindRatio=" + getForceStopRemindRatio()+ ", cyCreaseMaxPercent=" + getCyCreaseMaxPercent()+ ")";
    }
 
    public SiteSetting() {
    }
 
 
 
 
    public Integer getId() {
        return this.id;
    }
 
 
    public BigDecimal getBuyFee() {
        return this.buyFee;
    }
 
 
    public BigDecimal getSellFee() {
        return this.sellFee;
    }
 
 
    public BigDecimal getStayFee() {
        return this.stayFee;
    }
 
 
    public BigDecimal getDutyFee() {
        return this.dutyFee;
    }
 
 
    public Integer getStayMaxDays() {
        return this.stayMaxDays;
    }
 
 
    public Integer getBuyMinAmt() {
        return this.buyMinAmt;
    }
 
 
    public Integer getChargeMinAmt() {
        return this.chargeMinAmt;
    }
 
 
    public Integer getBuyMinNum() {
        return this.buyMinNum;
    }
 
 
    public BigDecimal getForceStopFee() {
        return this.forceStopFee;
    }
 
 
    public BigDecimal getBuyMaxAmtPercent() {
        return this.buyMaxAmtPercent;
    }
 
 
    public BigDecimal getForceStopPercent() {
        return this.forceStopPercent;
    }
 
 
    public BigDecimal getHightAndLow() {
        return this.hightAndLow;
    }
 
 
    public Integer getWithMinAmt() {
        return this.withMinAmt;
    }
 
 
    public BigDecimal getCreaseMaxPercent() {
        return this.creaseMaxPercent;
    }
 
 
    public Integer getBuyMaxNum() {
        return this.buyMaxNum;
    }
 
 
    public Integer getWithTimeBegin() {
        return this.withTimeBegin;
    }
 
 
    public Integer getWithTimeEnd() {
        return this.withTimeEnd;
    }
 
 
    public String getTransAmBegin() {
        return this.transAmBegin;
    }
 
 
    public String getTransAmEnd() {
        return this.transAmEnd;
    }
 
 
    public String getTransPmBegin() {
        return this.transPmBegin;
    }
 
 
    public String getTransPmEnd() {
        return this.transPmEnd;
    }
 
 
    public Integer getWithFeeSingle() {
        return this.withFeeSingle;
    }
 
 
    public BigDecimal getWithFeePercent() {
        return this.withFeePercent;
    }
 
 
    public String getSiteLever() {
        return this.siteLever;
    }
 
 
    public Integer getBuySameTimes() {
        return this.buySameTimes;
    }
 
    public Integer getBuySameNums() {
        return this.buySameNums;
    }
 
    public Integer getBuyNumTimes() {
        return this.buyNumTimes;
    }
 
    public Integer getBuyNumLots() {
        return this.buyNumLots;
    }
 
    public Integer getCantSellTimes() {
        return this.cantSellTimes;
    }
 
 
    public BigDecimal getKcCreaseMaxPercent() {
        return this.kcCreaseMaxPercent;
    }
 
 
    public Integer getStockDays() {
        return this.stockDays;
    }
 
 
    public BigDecimal getStockRate() {
        return this.stockRate;
    }
 
    public BigDecimal getForceStopRemindRatio() {
        return forceStopRemindRatio;
    }
 
    public void setForceStopRemindRatio(BigDecimal forceStopRemindRatio) {
        this.forceStopRemindRatio = forceStopRemindRatio;
    }
 
    public BigDecimal getCyCreaseMaxPercent() {
        return cyCreaseMaxPercent;
    }
 
 
    public void setCyCreaseMaxPercent(BigDecimal cyCreaseMaxPercent) {
        this.cyCreaseMaxPercent = cyCreaseMaxPercent;
    }
 
    public String getTransAmBeginhk() {
        return transAmBeginHk;
    }
 
    public void setTransAmBeginHk(String transAmBeginHk) {
        this.transAmBeginHk = transAmBeginHk;
    }
 
    public String getTransAmEndhk() {
        return transAmEndHk;
    }
 
    public void setTransAmEndHk(String transAmEndHk) {
        this.transAmEndHk = transAmEndHk;
    }
 
    public String getTransPmBeginhk() {
        return transPmBeginHk;
    }
 
    public void setTransPmBeginHk(String transPmBeginHk) {
        this.transPmBeginHk = transPmBeginHk;
    }
 
    public String getTransPmEndhk() {
        return transPmEndHk;
    }
 
    public void setTransPmEndHk(String transPmEndHk) {
        this.transPmEndHk = transPmEndHk;
    }
}