From ce3420676d9ccf4a2bdf87aeb7ad1494b5e5d26c Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 09 四月 2022 14:42:26 +0800 Subject: [PATCH] 图片上传与邀请图完善 --- app/src/main/java/com/yeshi/makemoney/app/dto/money/ExtractConfig.java | 28 +++++++++++++++++++++++----- 1 files changed, 23 insertions(+), 5 deletions(-) diff --git a/app/src/main/java/com/yeshi/makemoney/app/dto/money/ExtractConfig.java b/app/src/main/java/com/yeshi/makemoney/app/dto/money/ExtractConfig.java index c4e0709..13e17e5 100644 --- a/app/src/main/java/com/yeshi/makemoney/app/dto/money/ExtractConfig.java +++ b/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 @@ -34,7 +37,13 @@ /** * 棣栨鎻愮幇鐨勬渶灏忛噾棰� **/ - 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; } } -- Gitblit v1.8.0