| | |
| | | package com.yeshi.makemoney.app.dto.money; |
| | | |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author hxh |
| | |
| | | |
| | | |
| | | /** |
| | | * 首次提现的最小金额 |
| | | * 新用户小金额提现次数 |
| | | **/ |
| | | private BigDecimal firstMinMoney; |
| | | private Integer newerLittleMoneyNum; |
| | | |
| | | /** |
| | | * 提现金额 |
| | | **/ |
| | | |
| | | private List<BigDecimal> extractMoneyList; |
| | | |
| | | |
| | | public BigDecimal getMaxMoney() { |
| | |
| | | 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; |
| | | } |
| | | } |