admin
2019-07-09 531d93708df8017e59830f15b41f3cc42d6126e6
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
81
82
package com.yeshi.fanli.vo.msg;
 
import java.util.Date;
import java.util.List;
 
import com.yeshi.fanli.entity.common.JumpDetailV2;
 
public class UserMsgVO {
    private String icon;
    private String title;
    private Date time;
    private String type; // order(订单)/money(资金)/account(账号)/invite(邀请)/other(其他)
    private List<CommonMsgItemVO> contentItems;
    private JumpDetailV2 jumpDetail;// 跳转详情
    private String params;// 跳转参数
 
    public JumpDetailV2 getJumpDetail() {
        return jumpDetail;
    }
 
    public void setJumpDetail(JumpDetailV2 jumpDetail) {
        this.jumpDetail = jumpDetail;
    }
 
    public String getParams() {
        return params;
    }
 
    public void setParams(String params) {
        this.params = params;
    }
 
    public UserMsgVO(String icon, String title, Date time, List<CommonMsgItemVO> contentItems) {
        this.icon = icon;
        this.title = title;
        this.time = time;
        this.contentItems = contentItems;
    }
 
    public UserMsgVO() {
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public Date getTime() {
        return time;
    }
 
    public void setTime(Date time) {
        this.time = time;
    }
 
    public List<CommonMsgItemVO> getContentItems() {
        return contentItems;
    }
 
    public void setContentItems(List<CommonMsgItemVO> contentItems) {
        this.contentItems = contentItems;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
}