admin
2022-10-28 0e9b6603d4ae9d11c1fbc90257ce816c5807b8ff
app/src/main/java/com/yeshi/makemoney/app/dto/money/ExtractConfig.java
@@ -1,6 +1,9 @@
package com.yeshi.makemoney.app.dto.money;
import org.springframework.web.bind.annotation.RequestBody;
import java.math.BigDecimal;
import java.util.List;
/**
 * @author hxh
@@ -32,9 +35,15 @@
    /**
     * 首次提现的最小金额
     * 新用户小金额提现次数
     **/
    private BigDecimal firstMinMoney;
    private Integer newerLittleMoneyNum;
    /**
     * 提现金额
     **/
    private  List<BigDecimal>  extractMoneyList;
    public BigDecimal getMaxMoney() {
@@ -69,11 +78,20 @@
        this.maxMoneyPerDay = maxMoneyPerDay;
    }
    public BigDecimal getFirstMinMoney() {
        return firstMinMoney;
    public Integer getNewerLittleMoneyNum() {
        return newerLittleMoneyNum;
    }
    public void setFirstMinMoney(BigDecimal firstMinMoney) {
        this.firstMinMoney = firstMinMoney;
    public void setNewerLittleMoneyNum(Integer newerLittleMoneyNum) {
        this.newerLittleMoneyNum = newerLittleMoneyNum;
    }
    public List<BigDecimal> getExtractMoneyList() {
        return extractMoneyList;
    }
    public void setExtractMoneyList(List<BigDecimal> extractMoneyList) {
        this.extractMoneyList = extractMoneyList;
    }
}