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/TokenVO.java |   30 +++++++++++++++++++++---------
 1 files changed, 21 insertions(+), 9 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/vo/msg/TokenVO.java b/fanli/src/main/java/com/yeshi/fanli/vo/msg/TokenVO.java
index 558cba3..4c1dcd8 100644
--- a/fanli/src/main/java/com/yeshi/fanli/vo/msg/TokenVO.java
+++ b/fanli/src/main/java/com/yeshi/fanli/vo/msg/TokenVO.java
@@ -7,7 +7,7 @@
 public class TokenVO {
 	
 	@Expose // id
-	private Long id;
+	private String token;
 	
 	@Expose // 鏄电О
 	private String nickName;
@@ -15,11 +15,14 @@
 	@Expose // 澶村儚
 	private String portrait;
 	
-	@Expose // 绫诲瀷
-	private String type;
+	@Expose // 绫诲瀷  1鏍囬鎼滅储  2閾炬帴鎼滅储
+	private Integer type; 
 	
 	@Expose // 鏁伴噺銆侀潰棰�
 	private Integer amount;
+
+	@Expose // 鏁伴噺銆侀潰棰�--- V2
+	private String money;
 	
 	@Expose // 鎻愮ず璇�
 	private List<String> tips;
@@ -44,11 +47,12 @@
 		this.portrait = portrait;
 	}
 
-	public String getType() {
+
+	public Integer getType() {
 		return type;
 	}
 
-	public void setType(String type) {
+	public void setType(Integer type) {
 		this.type = type;
 	}
 
@@ -68,12 +72,12 @@
 		this.tips = tips;
 	}
 
-	public Long getId() {
-		return id;
+	public String getToken() {
+		return token;
 	}
 
-	public void setId(Long id) {
-		this.id = id;
+	public void setToken(String token) {
+		this.token = token;
 	}
 
 	public Boolean getState() {
@@ -83,4 +87,12 @@
 	public void setState(Boolean state) {
 		this.state = state;
 	}
+
+	public String getMoney() {
+		return money;
+	}
+
+	public void setMoney(String money) {
+		this.money = money;
+	}
 }

--
Gitblit v1.8.0