| | |
| | | |
| | | public class GoldCornRecordVO { |
| | | private String title; |
| | | private String desc; |
| | | private String date; |
| | | private int goldCorn; |
| | | |
| | | public GoldCornRecordVO(String title, String date, 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 void setGoldCorn(int goldCorn) { |
| | | this.goldCorn = goldCorn; |
| | | } |
| | | |
| | | public String getDesc() { |
| | | return desc; |
| | | } |
| | | |
| | | public void setDesc(String desc) { |
| | | this.desc = desc; |
| | | } |
| | | } |