From 88b54772dbcf5ecab1e2316e4e4626ac901b8908 Mon Sep 17 00:00:00 2001
From: yujian <yujian>
Date: 星期二, 22 一月 2019 15:58:24 +0800
Subject: [PATCH] 邀请码添加返回状态

---
 fanli/src/main/java/com/yeshi/fanli/util/factory/msg/MsgAccountDetailFactory.java |   25 +++++++++++++++++++++----
 1 files changed, 21 insertions(+), 4 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/MsgAccountDetailFactory.java b/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/MsgAccountDetailFactory.java
index aaa96ed..2f5cdc4 100644
--- a/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/MsgAccountDetailFactory.java
+++ b/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/MsgAccountDetailFactory.java
@@ -22,11 +22,11 @@
 	public static MsgAccountDetail createBindingAccount(Long uid, int type) {
 		String msg = "";
 		if (type == TYPE_PHONE) {
-			msg = "<red>鎭枩浣犳墜鏈哄彿缁戝畾鎴愬姛<red>";
+			msg = "<highlight>鎭枩浣犳墜鏈哄彿缁戝畾鎴愬姛</highlight>";
 		} else if (type == TYPE_TB) {
-			msg = "<red>鎭枩浣犳窐瀹濈粦瀹氭垚鍔�<red>";
+			msg = "<highlight>鎭枩浣犳窐瀹濈粦瀹氭垚鍔�</highlight>";
 		} else if (type == TYPE_WX) {
-			msg = "<red>鎭枩浣犲井淇$粦瀹氭垚鍔�<red>";
+			msg = "<highlight>鎭枩浣犲井淇$粦瀹氭垚鍔�</highlight>";
 		}
 		if (StringUtil.isNullOrEmpty(msg))
 			return null;
@@ -122,6 +122,23 @@
 		return detail;
 	}
 
-	// TODO 璐﹀彿绛夌骇
+	// 璐﹀彿绛夌骇
+	public static MsgAccountDetail createUserRank(Long uid, String orderType, int orderCount, String rankName) {
+		if (uid == null || rankName == null)
+			return null;
+
+		String msg = String.format(
+				"鎭枩浣狅紝涓婃湀<highlight>%s</highlight>璁㈠崟杈惧埌<highlight>%s</highlight>鍗曪紝宸蹭负浣犲崌绾т负<highlight>%s</highlight>鐢ㄦ埛锛屽皢浼氳幏寰楀搴旂殑绂忓埄鍜岀壒鏉冦��",
+				orderType, orderCount + "", rankName);
+		MsgAccountDetail detail = new MsgAccountDetail();
+		detail.setBeiZhu("鏃�");
+		detail.setContent(msg);
+		detail.setTitle("璐﹀彿绛夌骇");
+		detail.setType(MsgTypeAccountTypeEnum.level);
+		detail.setUser(new UserInfo(uid));
+		detail.setCreateTime(new Date());
+		detail.setRead(false);
+		return detail;
+	}
 
 }

--
Gitblit v1.8.0