admin
2022-04-21 2464548977f4720bc8fceeb5d999c1a3852c2d10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;
    }
}