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;
|
}
|
}
|