admin
2021-04-16 6e365a48a83e628759df3a5f25b3db97009c9f26
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
package com.yeshi.buwan.vo.goldcorn;
 
public class GoldCornRecordVO {
    private String title;
    private String date;
    private int goldCorn;
 
    public GoldCornRecordVO(String title, String date, int goldCorn) {
        this.title = title;
        this.date = date;
        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;
    }
}