package com.yeshi.makemoney.app.vo.goldcorn;
|
|
/**
|
* @author hxh
|
* @title: GoldCornGetRecordVO
|
* @description: 金币获得记录列表
|
* @date 2022/4/21 11:45
|
*/
|
public class GoldCornGetRecordVO {
|
|
private String title;
|
private String dateTime;
|
private int num;
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
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;
|
}
|
}
|