admin
2022-04-01 14c0cd0ea9eb372cd5db511c788b2daa3cc7069b
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
package com.yeshi.makemoney.app.dto.money;
 
import java.math.BigDecimal;
 
/**
 * @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 BigDecimal firstMinMoney;
 
 
    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 BigDecimal getFirstMinMoney() {
        return firstMinMoney;
    }
 
    public void setFirstMinMoney(BigDecimal firstMinMoney) {
        this.firstMinMoney = firstMinMoney;
    }
}