| | |
| | | private BigDecimal shareRate;
|
| | | // 奖励券最高返比例
|
| | | private BigDecimal maxRewardRate;
|
| | | |
| | | |
| | |
|
| | | public ConfigParamsDTO() {}
|
| | |
|
| | | public ConfigParamsDTO(BigDecimal fanLiRate, BigDecimal shareRate, BigDecimal maxRewardRate) {
|
| | | this.fanLiRate = fanLiRate;
|
| | | this.shareRate = shareRate;
|
| | | this.maxRewardRate = maxRewardRate;
|
| | | }
|
| | |
|
| | | public BigDecimal getFanLiRate() {
|
| | | return fanLiRate;
|
| | | }
|
| | |
|
| | | public void setFanLiRate(BigDecimal fanLiRate) {
|
| | | this.fanLiRate = fanLiRate;
|
| | | }
|
| | |
|
| | | public BigDecimal getShareRate() {
|
| | | return shareRate;
|
| | | }
|
| | |
|
| | | public void setShareRate(BigDecimal shareRate) {
|
| | | this.shareRate = shareRate;
|
| | | }
|
| | |
|
| | | public BigDecimal getMaxRewardRate() {
|
| | | return maxRewardRate;
|
| | | }
|
| | |
|
| | | public void setMaxRewardRate(BigDecimal maxRewardRate) {
|
| | | this.maxRewardRate = maxRewardRate;
|
| | | }
|
| | | |
| | |
|
| | | }
|