From 28cf328a098334b51a3e9d2d56f983fb8c862211 Mon Sep 17 00:00:00 2001
From: yujian <yujian@163.com>
Date: 星期六, 23 五月 2020 09:54:38 +0800
Subject: [PATCH] 足迹、收藏订单兼容新需求

---
 fanli/src/main/java/com/yeshi/fanli/vo/msg/UserMsgVO.java |   41 ++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 40 insertions(+), 1 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserMsgVO.java b/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserMsgVO.java
index 3569894..7c3f4bf 100644
--- a/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserMsgVO.java
+++ b/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserMsgVO.java
@@ -3,13 +3,36 @@
 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 UserMsgVO(String icon, String title, Date time, List<CommonMsgItemVO> contentItems) {
+	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;
@@ -50,4 +73,20 @@
 	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;
+	}
 }

--
Gitblit v1.8.0