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/tlj/ReduceHongBao.java |   57 +++++++++++++++++++++++++++++++++++++++++++--------------
 1 files changed, 43 insertions(+), 14 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/vo/tlj/ReduceHongBao.java b/fanli/src/main/java/com/yeshi/fanli/vo/tlj/ReduceHongBao.java
index 19425d0..7125da5 100644
--- a/fanli/src/main/java/com/yeshi/fanli/vo/tlj/ReduceHongBao.java
+++ b/fanli/src/main/java/com/yeshi/fanli/vo/tlj/ReduceHongBao.java
@@ -1,8 +1,15 @@
 package com.yeshi.fanli.vo.tlj;
 
+import java.io.Serializable;
+
 import com.google.gson.annotations.Expose;
 
-public class ReduceHongBao {
+public class ReduceHongBao implements Serializable {
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 1L;
+	
 	@Expose
 	private String name;
 	@Expose
@@ -13,23 +20,45 @@
 	private Integer total;
 	@Expose
 	private Integer left;
-	
-	public String getMoney() {
-		return money;
-	}
-	public void setMoney(String money) {
-		this.money = money;
-	}
-	public String getTip() {
-		return tip;
-	}
-	public void setTip(String tip) {
-		this.tip = tip;
-	}
+
 	public String getName() {
 		return name;
 	}
+
 	public void setName(String name) {
 		this.name = name;
 	}
+
+	public String getMoney() {
+		return money;
+	}
+
+	public void setMoney(String money) {
+		this.money = money;
+	}
+
+	public String getTip() {
+		return tip;
+	}
+
+	public void setTip(String tip) {
+		this.tip = tip;
+	}
+
+	public Integer getTotal() {
+		return total;
+	}
+
+	public void setTotal(Integer total) {
+		this.total = total;
+	}
+
+	public Integer getLeft() {
+		return left;
+	}
+
+	public void setLeft(Integer left) {
+		this.left = left;
+	}
+
 }

--
Gitblit v1.8.0