package com.yeshi.makemoney.app.vo.user;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @author hxh
|
* @title: ExtractDenominationVO
|
* @description: 可提现面额
|
* @date 2022/4/20 17:43
|
*/
|
public class ExtractDenominationVO {
|
|
private BigDecimal money;
|
private String tag;
|
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
public String getTag() {
|
return tag;
|
}
|
|
public void setTag(String tag) {
|
this.tag = tag;
|
}
|
}
|