yujian
2019-11-06 54e6398cabe1b32b1dbc9857c6a99d8f15b549f7
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
package com.yeshi.fanli.vo.redpack;
 
import com.google.gson.annotations.Expose;
 
public class RedPackWinDetailVO {
    @Expose
    private String title;
    @Expose
    private String bless;
    @Expose
    private String money;
    @Expose
    private String desc;
    @Expose
    private String tips;
    // 跳转
    @Expose
    private String params;
    @Expose
    private Object jumpDetail;
    
    
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    public String getBless() {
        return bless;
    }
    public void setBless(String bless) {
        this.bless = bless;
    }
    public String getMoney() {
        return money;
    }
    public void setMoney(String money) {
        this.money = money;
    }
    public String getDesc() {
        return desc;
    }
    public void setDesc(String desc) {
        this.desc = desc;
    }
    public String getTips() {
        return tips;
    }
    public void setTips(String tips) {
        this.tips = tips;
    }
    public String getParams() {
        return params;
    }
    public void setParams(String params) {
        this.params = params;
    }
    public Object getJumpDetail() {
        return jumpDetail;
    }
    public void setJumpDetail(Object jumpDetail) {
        this.jumpDetail = jumpDetail;
    }
}