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;// 跳转参数
|
private Long id;
|
|
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(Long id, String icon, String title, Date time, List<CommonMsgItemVO> contentItems) {
|
this.id = id;
|
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;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
}
|