admin
2021-04-19 eb7f3343af839a7c71f16e8ada2b25d5e2201c08
src/main/java/com/yeshi/buwan/vo/goldcorn/GoldCornRecordVO.java
@@ -2,12 +2,14 @@
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;
    }
@@ -34,4 +36,12 @@
    public void setGoldCorn(int goldCorn) {
        this.goldCorn = goldCorn;
    }
    public String getDesc() {
        return desc;
    }
    public void setDesc(String desc) {
        this.desc = desc;
    }
}