package com.yeshi.buwan.vo.goldcorn;
|
|
public class GoldCornRecordVO {
|
private String title;
|
private String desc;
|
private String date;
|
private int goldCorn;
|
|
public GoldCornRecordVO(String title,String desc, String date, int goldCorn) {
|
this.title = title;
|
this.date = date;
|
this.desc=desc;
|
this.goldCorn = goldCorn;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getDate() {
|
return date;
|
}
|
|
public void setDate(String date) {
|
this.date = date;
|
}
|
|
public int getGoldCorn() {
|
return goldCorn;
|
}
|
|
public void setGoldCorn(int goldCorn) {
|
this.goldCorn = goldCorn;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
}
|