admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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;
    }
}