admin
2020-05-19 744594ef1a2f530fc3e86ea9dc48b62247f79420
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.yeshi.fanli.vo.redpack;
 
import java.io.Serializable;
 
import com.google.gson.annotations.Expose;
 
public class RedPackWinProgressVO implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    @Expose
    private Long uid;
    @Expose
    private String name;
    @Expose
    private String portrait;
    @Expose
    private String money;
    @Expose
    private String time;
 
    public RedPackWinProgressVO() {}
    
    public RedPackWinProgressVO(String name, String time) {
        this.name = name;
        this.time = time;
    }
    
    public RedPackWinProgressVO(String name, String time, String money) {
        this.name = name;
        this.time = time;
        this.money = money;
    }
    
    
    
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getPortrait() {
        return portrait;
    }
 
    public void setPortrait(String portrait) {
        this.portrait = portrait;
    }
 
    public String getMoney() {
        return money;
    }
 
    public void setMoney(String money) {
        this.money = money;
    }
 
    public String getTime() {
        return time;
    }
 
    public void setTime(String time) {
        this.time = time;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
    
}