admin
2022-10-28 0e9b6603d4ae9d11c1fbc90257ce816c5807b8ff
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
33
34
35
36
37
38
39
package com.yeshi.makemoney.app.vo.goldcorn;
 
/**
 * @author hxh
 * @title: GoldCornGetRecordVO
 * @description: 金币折算记录
 * @date 2022/4/21 11:45
 */
public class GoldCornExchangeRecordVO {
 
    private String money;
    private String dateTime;
    private int num;
 
 
    public String getMoney() {
        return money;
    }
 
    public void setMoney(String money) {
        this.money = money;
    }
 
    public String getDateTime() {
        return dateTime;
    }
 
    public void setDateTime(String dateTime) {
        this.dateTime = dateTime;
    }
 
    public int getNum() {
        return num;
    }
 
    public void setNum(int num) {
        this.num = num;
    }
}