admin
2022-04-21 2464548977f4720bc8fceeb5d999c1a3852c2d10
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.yeshi.makemoney.app.dto.money;
 
import org.springframework.web.bind.annotation.RequestBody;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @author hxh
 * @title: ExtractConfig
 * @description: 提现配置
 * @date 2022/4/1 14:02
 */
public class ExtractConfig {
 
    /**
     * 单次提现的最大金额
     **/
    private BigDecimal maxMoney;
 
    /**
     * 单次提现的最小金额
     **/
    private BigDecimal minMoney;
 
    /**
     * 每天最多提现几次
     **/
    private Integer maxNumPerDay;
 
    /**
     * 每天最多提多少钱
     **/
    private BigDecimal maxMoneyPerDay;
 
 
    /**
     * 新用户小金额提现次数
     **/
    private Integer newerLittleMoneyNum;
 
    /**
     * 提现金额
     **/
 
    private  List<BigDecimal>  extractMoneyList;
 
 
    public BigDecimal getMaxMoney() {
        return maxMoney;
    }
 
    public void setMaxMoney(BigDecimal maxMoney) {
        this.maxMoney = maxMoney;
    }
 
    public BigDecimal getMinMoney() {
        return minMoney;
    }
 
    public void setMinMoney(BigDecimal minMoney) {
        this.minMoney = minMoney;
    }
 
    public Integer getMaxNumPerDay() {
        return maxNumPerDay;
    }
 
    public void setMaxNumPerDay(Integer maxNumPerDay) {
        this.maxNumPerDay = maxNumPerDay;
    }
 
    public BigDecimal getMaxMoneyPerDay() {
        return maxMoneyPerDay;
    }
 
    public void setMaxMoneyPerDay(BigDecimal maxMoneyPerDay) {
        this.maxMoneyPerDay = maxMoneyPerDay;
    }
 
 
    public Integer getNewerLittleMoneyNum() {
        return newerLittleMoneyNum;
    }
 
    public void setNewerLittleMoneyNum(Integer newerLittleMoneyNum) {
        this.newerLittleMoneyNum = newerLittleMoneyNum;
    }
 
    public List<BigDecimal> getExtractMoneyList() {
        return extractMoneyList;
    }
 
    public void setExtractMoneyList(List<BigDecimal> extractMoneyList) {
        this.extractMoneyList = extractMoneyList;
    }
}