admin
2019-05-05 81082e03207761edff6b317df8268dc3f968c20a
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package com.yeshi.fanli.vo.msg;
 
import java.util.Date;
 
import com.yeshi.fanli.entity.common.JumpDetailV2;
 
public class UserCommonMsgVO {
    public static String TYPE_KEFU = "kefu";
    public static String TYPE_GUANXUAN = "guanxuan";
    public static String TYPE_ZHUSHOU = "zhushou";
    public static String TYPE_RECOMMEND = "recommend";
 
    private String icon;
    private String title;
    private Date time;
    private String type; // kefu -客服消息 other-其他消息
    private String latestMsg;// 最近的消息
    private Boolean read;// 是否已读
    private JumpDetailV2 jumpDetail;// 跳转详情
    private String params;// 跳转参数
 
    public UserCommonMsgVO(String icon, String title, Date time, String type, String latestMsg, Boolean read,
            JumpDetailV2 jumpDetail, String params) {
        this.icon = icon;
        this.title = title;
        this.time = time;
        this.type = type;
        this.latestMsg = latestMsg;
        this.read = read;
        this.jumpDetail = jumpDetail;
        this.params = params;
    }
 
    public UserCommonMsgVO() {
 
    }
 
    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 String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getLatestMsg() {
        return latestMsg;
    }
 
    public void setLatestMsg(String latestMsg) {
        this.latestMsg = latestMsg;
    }
 
    public Boolean getRead() {
        return read;
    }
 
    public void setRead(Boolean read) {
        this.read = read;
    }
 
    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;
    }
 
}