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;
|
}
|
}
|