From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 25 二月 2025 16:41:22 +0800
Subject: [PATCH] 淘宝转链接口更新

---
 fanli/src/main/java/com/yeshi/fanli/util/factory/msg/MsgMoneyDetailFactory.java |  999 +++++++++++++++++++++++++++++-----------------------------
 1 files changed, 503 insertions(+), 496 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/MsgMoneyDetailFactory.java b/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/MsgMoneyDetailFactory.java
index b3917eb..ee10a54 100644
--- a/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/MsgMoneyDetailFactory.java
+++ b/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/MsgMoneyDetailFactory.java
@@ -1,496 +1,503 @@
-package com.yeshi.fanli.util.factory.msg;
-
-import java.math.BigDecimal;
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-import org.yeshi.utils.StringUtil;
-
-import com.google.gson.Gson;
-import com.yeshi.fanli.entity.bus.msg.MsgMoneyDetail;
-import com.yeshi.fanli.entity.bus.msg.MsgMoneyDetail.MsgTypeMoneyTypeEnum;
-import com.yeshi.fanli.entity.bus.user.AlipayAccountValidNormalHistory;
-import com.yeshi.fanli.entity.bus.user.Extract;
-import com.yeshi.fanli.entity.bus.user.UserInfo;
-import com.yeshi.fanli.util.Constant;
-import com.yeshi.fanli.util.TimeUtil;
-import com.yeshi.fanli.vo.msg.ClientTextStyleVO;
-import com.yeshi.fanli.vo.msg.CommonMsgItemVO;
-import com.yeshi.fanli.vo.msg.CommonMsgItemVOFactory;
-
-public class MsgMoneyDetailFactory {
-	
-	/**
-	 * 璐﹀彿楠岃瘉娑堟伅
-	 * 
-	 * @param valid
-	 * @param uid
-	 * @param beiZhu
-	 * @return
-	 */
-	public static MsgMoneyDetail createExtractMsg(String stateDesc, Long uid, Extract extract, String reason, String alipayNo) {
-		if (extract == null || uid == null)
-			return null;
-		
-		String name = filterName(extract.getName());
-		String account = filterAccount(extract.getAccount());
-		
-		List<CommonMsgItemVO> listMsg = new ArrayList<>();
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎻愮幇璐﹀彿", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(String.format("鏀粯瀹�:%s-濮撳悕:%s",account, name), ClientTextStyleVO.COLOR_CONTENT)));
-		
-		List<ClientTextStyleVO> contentList = new ArrayList<>();
-		contentList.add(new ClientTextStyleVO("楼" + extract.getMoney().setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
-		if (!StringUtil.isNullOrEmpty(alipayNo)) {
-			contentList.add(new ClientTextStyleVO(String.format("&鏀粯瀹濊鍗曞彿: %s", "*" + alipayNo.substring(alipayNo.length() - 10)), ClientTextStyleVO.COLOR_CONTENT));
-		}
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎻愮幇閲戦", ClientTextStyleVO.COLOR_TITLE),contentList));
-		
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎻愮幇鐘舵��", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(stateDesc, ClientTextStyleVO.COLOR_CONTENT)));
-	
-		if (!StringUtil.isNullOrEmpty(reason)) {
-			listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍘熷洜", ClientTextStyleVO.COLOR_TITLE),
-					new ClientTextStyleVO(reason, ClientTextStyleVO.COLOR_CONTENT)));
-		}
-		
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO("濡傛湁鐤戦棶璇疯仈绯讳汉宸ュ鏈�", ClientTextStyleVO.COLOR_CONTENT)));
-		
-		MsgMoneyDetail detail = new MsgMoneyDetail();
-		detail.setBeiZhu(reason);
-		detail.setCreateTime(new Date());
-		detail.setExtract(extract);
-		detail.setMoney(extract.getMoney());
-		detail.setMsgType(MsgTypeMoneyTypeEnum.extract);
-		detail.setRead(false);
-		detail.setUser(new UserInfo(uid));
-		detail.setStateDesc(stateDesc);
-		detail.setExtraInfo(new Gson().toJson(listMsg));
-		return detail;
-	}
-
-
-	/**
-	 * 璐﹀彿楠岃瘉娑堟伅
-	 * 
-	 * @param valid
-	 * @param uid
-	 * @param beiZhu
-	 * @return
-	 */
-	public static MsgMoneyDetail createAlipayAccountValidMsg(AlipayAccountValidNormalHistory valid, Long uid,
-			String appName, BigDecimal money, String limitDay, boolean change) {
-		if (valid == null || uid == null || appName == null)
-			return null;
-		
-		String changeWay = "缁戝畾";
-		if (change) {
-			changeWay = "淇敼";
-		}
-		String name = filterName(valid.getName());
-		String account = filterAccount(valid.getAccount());
-		
-		List<CommonMsgItemVO> listMsg = new ArrayList<>();
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("楠岃瘉鐘舵��", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(String.format("鎻愮幇璐﹀彿%s鎴愬姛", changeWay), ClientTextStyleVO.COLOR_CONTENT)));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎻愮幇璐﹀彿", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(String.format("鏀粯瀹�:%s-濮撳悕:%s",account, name), ClientTextStyleVO.COLOR_CONTENT)));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎵撴閲戦", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO("楼" + money.setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT)));
-		
-		List<ClientTextStyleVO> contentList2 = new ArrayList<>();
-		contentList2.add(new ClientTextStyleVO("鎻愮幇璐﹀彿鏀跺埌涓�绗旓紝鏉ヨ嚜", ClientTextStyleVO.COLOR_CONTENT));
-		contentList2.add(new ClientTextStyleVO(appName, ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
-		contentList2.add(new ClientTextStyleVO("鐨勮浆璐︼紝鍗崇粦瀹氭垚鍔�", ClientTextStyleVO.COLOR_CONTENT));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("璇存槑", ClientTextStyleVO.COLOR_TITLE),contentList2));
-		
-		List<ClientTextStyleVO> contentList = new ArrayList<>();
-		contentList.add(new ClientTextStyleVO(String.format("鎴愬姛%s鐨勬彁鐜拌处鍙�", changeWay), ClientTextStyleVO.COLOR_CONTENT));
-		contentList.add(new ClientTextStyleVO( limitDay+"", ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
-		contentList.add(new ClientTextStyleVO("鍐呮棤娉曚慨鏀�", ClientTextStyleVO.COLOR_CONTENT));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),contentList));
-		
-		
-		MsgMoneyDetail detail = new MsgMoneyDetail();
-		detail.setAlipayAccountValid(valid);
-		detail.setCreateTime(new Date());
-		detail.setMoney(money);
-		detail.setMsgType(MsgTypeMoneyTypeEnum.extractValid);
-		detail.setRead(false);
-		detail.setUser(new UserInfo(uid));
-		detail.setExtraInfo(new Gson().toJson(listMsg));
-		return detail;
-	}
-	
-	
-	/**
-	 * 璐﹀彿楠岃瘉娑堟伅
-	 * 
-	 * @param valid
-	 * @param uid
-	 * @param beiZhu
-	 * @return
-	 */
-	public static MsgMoneyDetail createAlipayAccountValidFail(AlipayAccountValidNormalHistory valid, Long uid,
-			String appName, BigDecimal money, int limitDay, boolean change) {
-		if (valid == null || uid == null || appName == null)
-			return null;
-		
-		String changeWay = "缁戝畾";
-		if (change) {
-			changeWay = "淇敼";
-		}
-		
-		List<CommonMsgItemVO> listMsg = new ArrayList<>();
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("楠岃瘉鐘舵��", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(String.format("鎻愮幇璐﹀彿%s澶辫触", changeWay), ClientTextStyleVO.COLOR_CONTENT)));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎻愮幇璐﹀彿", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(String.format("鏀粯瀹�:%s-濮撳悕:%s",valid.getAccount(), valid.getName()), ClientTextStyleVO.COLOR_CONTENT)));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍘熷洜", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO("璇蜂粩缁嗘牳瀵瑰~鍐欒处鍙锋槸鍚︽湁璇垨璺濅笂涓�娆′慨鏀规椂闀挎槸鍚﹁秴杩�30澶�", ClientTextStyleVO.COLOR_CONTENT)));
-	
-		if (!change) {
-			listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
-					new ClientTextStyleVO("鏃�", ClientTextStyleVO.COLOR_CONTENT)));
-		} else {
-			List<ClientTextStyleVO> contentList = new ArrayList<>();
-			contentList.add(new ClientTextStyleVO("璺濅笅涓�娆′慨鏀规椂闂磋繕鏈�", ClientTextStyleVO.COLOR_CONTENT));
-			contentList.add(new ClientTextStyleVO(limitDay+"", ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
-			contentList.add(new ClientTextStyleVO("澶╁唴鏃犳硶淇敼", ClientTextStyleVO.COLOR_CONTENT));
-			listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),contentList));
-		}
-		
-		MsgMoneyDetail detail = new MsgMoneyDetail();
-		detail.setAlipayAccountValid(valid);
-		detail.setCreateTime(new Date());
-		detail.setMoney(money);
-		detail.setMsgType(MsgTypeMoneyTypeEnum.extractValid);
-		detail.setRead(false);
-		detail.setUser(new UserInfo(uid));
-		detail.setExtraInfo(new Gson().toJson(listMsg));
-		return detail;
-	}
-	
-	
-
-	/**
-	 * 杩斿埄鍒拌处
-	 * 
-	 * @param money
-	 * @param balance
-	 * @param orderId
-	 * @param goodsCount
-	 * @param uid
-	 * @param beiZhu
-	 * @return
-	 */
-	public static MsgMoneyDetail fanLiOrderReceivedMsg(BigDecimal money, BigDecimal balance, String orderId, int source,
-			 int goodsCount, Long uid, Date downTime, boolean useCoupon) {
-		if (money == null || balance == null || orderId == null || uid == null)
-			return null;
-
-		String fanliName = "鑷喘杩斿埄";
-		String sourceName = Constant.getSourceName(source) + "-杩斿埄璁㈠崟";
-		if (useCoupon) {
-			fanliName = "浣跨敤杩斿埄濂栧姳鍒�";
-		}
-		
-		List<CommonMsgItemVO> listMsg = new ArrayList<>();
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处璇︽儏", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(sourceName, ClientTextStyleVO.COLOR_CONTENT)));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("璁㈠崟鍙�", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(orderId, ClientTextStyleVO.COLOR_CONTENT)));
-
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("涓嬪崟鏃堕棿", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(TimeUtil.formatDate(downTime), ClientTextStyleVO.COLOR_CONTENT)));
-		
-		List<ClientTextStyleVO> contentList = new ArrayList<>();
-		contentList.add(new ClientTextStyleVO("鍏�", ClientTextStyleVO.COLOR_CONTENT));
-		contentList.add(new ClientTextStyleVO(goodsCount + "", ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
-		contentList.add(new ClientTextStyleVO("浠跺晢鍝�", ClientTextStyleVO.COLOR_CONTENT));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍟嗗搧鏁伴噺", ClientTextStyleVO.COLOR_TITLE), contentList));
-		
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处绫荤洰", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(fanliName, ClientTextStyleVO.COLOR_CONTENT)));
-		
-		List<ClientTextStyleVO> contentList2 = new ArrayList<>();
-		contentList2.add(new ClientTextStyleVO("楼" + money.setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
-		contentList2.add(new ClientTextStyleVO("锛堣处鎴蜂綑棰澛�"+ balance.setScale(2, BigDecimal.ROUND_DOWN) + "锛�", ClientTextStyleVO.COLOR_CONTENT));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处閲戦", ClientTextStyleVO.COLOR_TITLE), contentList2));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO("濡傛湁鐤戦棶璇疯仈绯讳汉宸ュ鏈�",	ClientTextStyleVO.COLOR_CONTENT)));
-		
-		MsgMoneyDetail detail = new MsgMoneyDetail();
-		detail.setBalance(balance);
-		detail.setCreateTime(new Date());
-		detail.setGoodsCount(goodsCount);
-		detail.setMoney(money);
-		detail.setMsgType(MsgTypeMoneyTypeEnum.fanli);
-		detail.setOrderId(orderId);
-		detail.setOrderType(source);
-		detail.setRead(false);
-		detail.setUser(new UserInfo(uid));
-		detail.setExtraInfo(new Gson().toJson(listMsg));
-		return detail;
-	}
-
-	
-
-	/**
-	 * 杩斿埄鍒拌处
-	 * 
-	 * @param money
-	 * @param balance
-	 * @param orderId
-	 * @param goodsCount
-	 * @param uid
-	 * @param beiZhu
-	 * @return
-	 */
-	public static MsgMoneyDetail shareOrderReceivedMsg(BigDecimal money, BigDecimal balance, int source, Long uid) {
-		if (money == null || balance == null || uid == null)
-			return null;
-
-		String sourceName = Constant.getSourceName(source) + "-鍒嗕韩璁㈠崟";
-		List<CommonMsgItemVO> listMsg = new ArrayList<>();
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处璇︽儏", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(sourceName, ClientTextStyleVO.COLOR_CONTENT)));
-		
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处绫荤洰", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO("鍒嗕韩濂栭噾", ClientTextStyleVO.COLOR_CONTENT)));
-		
-		List<ClientTextStyleVO> contentList2 = new ArrayList<>();
-		contentList2.add(new ClientTextStyleVO("楼" + money.setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
-		contentList2.add(new ClientTextStyleVO("锛堣处鎴蜂綑棰澛�"+ balance.setScale(2, BigDecimal.ROUND_DOWN) + "锛�", ClientTextStyleVO.COLOR_CONTENT));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处閲戦", ClientTextStyleVO.COLOR_TITLE), contentList2));
-		
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO("濡傛湁鐤戦棶璇疯仈绯讳汉宸ュ鏈�",	ClientTextStyleVO.COLOR_CONTENT)));
-		
-		MsgMoneyDetail detail = new MsgMoneyDetail();
-		detail.setBalance(balance);
-		detail.setCreateTime(new Date());
-		detail.setMoney(money);
-		detail.setMsgType(MsgTypeMoneyTypeEnum.share);
-		detail.setOrderType(source);
-		detail.setRead(false);
-		detail.setUser(new UserInfo(uid));
-		detail.setExtraInfo(new Gson().toJson(listMsg));
-		return detail;
-	}
-	
-	/**
-	 * 杩斿埄缁存潈
-	 * 
-	 * @param uid
-	 * @param orderId
-	 * @param money
-	 * @param balance
-	 * @param beiZhu
-	 * @return
-	 */
-	public static MsgMoneyDetail createOrderWeiQuanMsg(Long uid, String orderId, int source, BigDecimal money, 
-			BigDecimal fanliMoney, int goodsCount, Date downTime, int type) {
-		if (money == null || orderId == null || money == null || uid == null)
-			return null;
-		
-		MsgTypeMoneyTypeEnum typeEnum = null;
-		String sourceName = Constant.getSourceName(source);
-		if (Constant.TYPE_REBATE == type) {
-			sourceName += "-杩斿埄璁㈠崟";
-			typeEnum = MsgTypeMoneyTypeEnum.fanliWeiQuan;
-		} else if (Constant.TYPE_SHAER == type) {
-			sourceName += "-鍒嗕韩璁㈠崟";
-			typeEnum = MsgTypeMoneyTypeEnum.shareWeiQuan;
-		} 
-
-		String weiquan = "璁㈠崟鍞悗";
-		String weiquanMoney = "鍏ㄩ閫�鍥�";
-		if (fanliMoney.compareTo(money) > 0) {
-			weiquan = "璁㈠崟閮ㄥ垎鍞悗";
-			weiquan = "閮ㄥ垎閫�鍥�";
-		}
-		
-		List<CommonMsgItemVO> listMsg = new ArrayList<>();
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("閫�鍥炶鎯�", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(sourceName, ClientTextStyleVO.COLOR_CONTENT)));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("璁㈠崟鍙�", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(orderId, ClientTextStyleVO.COLOR_CONTENT)));
-
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("涓嬪崟鏃堕棿", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(TimeUtil.formatDate(downTime), ClientTextStyleVO.COLOR_CONTENT)));
-		
-		List<ClientTextStyleVO> contentList = new ArrayList<>();
-		contentList.add(new ClientTextStyleVO("鍏�", ClientTextStyleVO.COLOR_CONTENT));
-		contentList.add(new ClientTextStyleVO(goodsCount + "", ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
-		contentList.add(new ClientTextStyleVO("浠跺晢鍝�", ClientTextStyleVO.COLOR_CONTENT));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍟嗗搧鏁伴噺", ClientTextStyleVO.COLOR_TITLE), contentList));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("閫�鍥炲師鍥�", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(weiquan, ClientTextStyleVO.COLOR_CONTENT)));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处閲戦", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO("楼" +fanliMoney.setScale(2, BigDecimal.ROUND_DOWN) + "锛堝師鍒拌处閲戦锛�", ClientTextStyleVO.COLOR_CONTENT)));
-		
-		List<ClientTextStyleVO> contentList2 = new ArrayList<>();
-		contentList2.add(new ClientTextStyleVO("楼" + money.setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
-		contentList2.add(new ClientTextStyleVO("锛�"+ weiquanMoney + "锛�", ClientTextStyleVO.COLOR_CONTENT));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("閫�鍥為噾棰�", ClientTextStyleVO.COLOR_TITLE), contentList2));
-		
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO("濡傛湁鐤戦棶璇疯仈绯讳汉宸ュ鏈�",	ClientTextStyleVO.COLOR_CONTENT)));
-		
-		
-		MsgMoneyDetail detail = new MsgMoneyDetail();
-		detail.setCreateTime(new Date());
-		detail.setMoney(money);
-		detail.setMsgType(typeEnum);
-		detail.setOrderId(orderId);
-		detail.setOrderType(source);
-		detail.setRead(false);
-		detail.setUser(new UserInfo(uid));
-		detail.setExtraInfo(new Gson().toJson(listMsg));
-		return detail;
-	}
-
-	/**
-	 * 閭�璇疯禋鍒拌处
-	 * 
-	 * @param money
-	 * @param balance
-	 * @param orderCount
-	 * @param goodsCount
-	 * @param uid
-	 * @param beiZhu
-	 * @return
-	 */
-	public static MsgMoneyDetail createTeamReceivedMsg(Long uid, BigDecimal money, BigDecimal balance, Date receivedDate,
-			String teamName) {
-		if (money == null || balance == null || uid == null)
-			return null;
-
-		List<CommonMsgItemVO> listMsg = new ArrayList<>();
-		List<ClientTextStyleVO> contentList = new ArrayList<>();
-		contentList.add(new ClientTextStyleVO(TimeUtil.getYearOnlyYYYY(receivedDate)+ "骞�", ClientTextStyleVO.COLOR_CONTENT));
-		contentList.add(new ClientTextStyleVO(TimeUtil.getMonthOnlyMM(receivedDate), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
-		contentList.add(new ClientTextStyleVO("鏈�", ClientTextStyleVO.COLOR_CONTENT));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("缁撶畻鏈堝害", ClientTextStyleVO.COLOR_TITLE), contentList));
-		
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处绫荤洰", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO(teamName, ClientTextStyleVO.COLOR_CONTENT), true));
-		
-		List<ClientTextStyleVO> contentList2 = new ArrayList<>();
-		contentList2.add(new ClientTextStyleVO("楼" + money.setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
-		contentList2.add(new ClientTextStyleVO("锛堣处鎴蜂綑棰澛� "+ balance.setScale(2, BigDecimal.ROUND_DOWN)+"锛�", ClientTextStyleVO.COLOR_CONTENT));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处閲戦", ClientTextStyleVO.COLOR_TITLE), contentList2));
-		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
-				new ClientTextStyleVO("濡傛湁鐤戦棶璇疯仈绯讳汉宸ュ鏈�",	ClientTextStyleVO.COLOR_CONTENT)));
-		
-		MsgMoneyDetail detail = new MsgMoneyDetail();
-		detail.setBalance(balance);
-		detail.setCreateTime(new Date());
-		detail.setMoney(money);
-		detail.setMsgType(MsgTypeMoneyTypeEnum.invite);
-		detail.setRead(false);
-		detail.setUser(new UserInfo(uid));
-		detail.setExtraInfo(new Gson().toJson(listMsg));
-		return detail;
-	}
-
-	
-	private static String filterName(String oldname) {
-		String name = "";
-		if (StringUtil.isNullOrEmpty(oldname))
-			return name;
-				
-		if (oldname.length() > 2)
-			for (int i = 0; i < oldname.length(); i++) {
-				if (i == 0)
-					name += oldname.charAt(i);
-				else
-					name += "*";
-			}
-		else
-			name = oldname.charAt(0) + "*";
-
-		return name;
-	}
-	
-	public static String filterAccount(String alipayAccount) {
-		String account = "";
-		if (StringUtil.isNullOrEmpty(alipayAccount))
-			return account;
-		
-		if (alipayAccount.indexOf("@") > -1) {// 閭
-			int index = alipayAccount.indexOf("@");
-
-			for (int i = 0; i < alipayAccount.length(); i++) {
-				if (i < 3 || i >= index)
-					account += alipayAccount.charAt(i);
-				else
-					account += "*";
-			}
-		} else if (StringUtil.isMobile(alipayAccount)) {// 鐢佃瘽
-			account = alipayAccount.substring(0, 7) + "****";
-		} else {// 鍏朵粬
-			if (alipayAccount.length() >= 6) {
-				for (int i = 0; i < alipayAccount.length(); i++) {
-					if (i < alipayAccount.length() - 4)
-						account += alipayAccount.charAt(i);
-					else
-						account += "*";
-				}
-			} else {
-				for (int i = 0; i < alipayAccount.length(); i++) {
-					if (i <  alipayAccount.length() - 1)
-						account += alipayAccount.charAt(i);
-					else
-						account += "*";
-				}
-			}
-		}
-		return account;
-	}
-	
-	
-	/**
-	 * 绾㈠寘鐩稿叧淇℃伅
-	 * @param uid
-	 * @param type
-	 * @param content
-	 * @param beiZhu
-	 * @return
-	 */
-	public static MsgMoneyDetail createRedPackMsg(Long uid, MsgTypeMoneyTypeEnum type, String content, String beiZhu) {
-		if (uid == null || type == null || StringUtil.isNullOrEmpty(content))
-			return null;
-		MsgMoneyDetail detail = new MsgMoneyDetail();
-		detail.setUser(new UserInfo(uid));
-		detail.setRead(false);
-		detail.setContent(content);
-		detail.setMsgType(type);
-		detail.setBeiZhu(beiZhu);
-		detail.setCreateTime(new Date());
-		return detail;
-	}
-	
-	
-	public static MsgMoneyDetail createSystemEqualizeMsg(Long uid, String reason, BigDecimal money, BigDecimal balance,
-			String beiZhu) {
-		if (money == null || money == null || uid == null)
-			return null;
-
-		MsgMoneyDetail detail = new MsgMoneyDetail();
-		detail.setBalance(balance);
-		detail.setBeiZhu(beiZhu);
-		detail.setCreateTime(new Date());
-		detail.setMoney(money);
-		detail.setMsgType(MsgTypeMoneyTypeEnum.systemEqualize);
-		detail.setOrderId(reason);
-		detail.setRead(false);
-		detail.setUser(new UserInfo(uid));
-		return detail;
-	}
-	
-
-}
+package com.yeshi.fanli.util.factory.msg;
+
+import java.math.BigDecimal;
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+
+import org.yeshi.utils.StringUtil;
+
+import com.google.gson.Gson;
+import com.yeshi.fanli.entity.bus.msg.MsgMoneyDetail;
+import com.yeshi.fanli.entity.bus.msg.MsgMoneyDetail.MsgTypeMoneyTypeEnum;
+import com.yeshi.fanli.entity.bus.user.AlipayAccountValidNormalHistory;
+import com.yeshi.fanli.entity.bus.user.Extract;
+import com.yeshi.fanli.entity.bus.user.UserInfo;
+import com.yeshi.fanli.util.Constant;
+import org.yeshi.utils.TimeUtil;
+import com.yeshi.common.vo.ClientTextStyleVO;
+import com.yeshi.fanli.vo.msg.CommonMsgItemVO;
+import com.yeshi.fanli.vo.msg.CommonMsgItemVOFactory;
+
+public class MsgMoneyDetailFactory {
+	
+	/**
+	 * 璐﹀彿楠岃瘉娑堟伅
+	 * 
+	 * @param valid
+	 * @param uid
+	 * @param beiZhu
+	 * @return
+	 */
+	public static MsgMoneyDetail createExtractMsg(String stateDesc, Long uid, Extract extract, String reason, 
+			String alipayNo, String beizu) {
+		if (extract == null || uid == null)
+			return null;
+		
+		String name = filterName(extract.getName());
+		String account = filterAccount(extract.getAccount());
+		
+		List<CommonMsgItemVO> listMsg = new ArrayList<>();
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎻愮幇璐﹀彿", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(String.format("鏀粯瀹�:%s-濮撳悕:%s",account, name), ClientTextStyleVO.COLOR_CONTENT)));
+		
+		List<ClientTextStyleVO> contentList = new ArrayList<>();
+		contentList.add(new ClientTextStyleVO("楼" + extract.getMoney().setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+		if (!StringUtil.isNullOrEmpty(alipayNo)) {
+			contentList.add(new ClientTextStyleVO(String.format("&鏀粯瀹濊鍗曞彿: %s", "*" + alipayNo.substring(alipayNo.length() - 10)), ClientTextStyleVO.COLOR_CONTENT));
+		}
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎻愮幇閲戦", ClientTextStyleVO.COLOR_TITLE),contentList));
+		
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎻愮幇鐘舵��", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(stateDesc, ClientTextStyleVO.COLOR_CONTENT)));
+	
+		if (!StringUtil.isNullOrEmpty(reason)) {
+			listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍘熷洜", ClientTextStyleVO.COLOR_TITLE),
+					new ClientTextStyleVO(reason, ClientTextStyleVO.COLOR_CONTENT)));
+		}
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(beizu, ClientTextStyleVO.COLOR_CONTENT)));
+		
+		MsgMoneyDetail detail = new MsgMoneyDetail();
+		detail.setBeiZhu(reason);
+		detail.setCreateTime(new Date());
+		detail.setExtract(extract);
+		detail.setMoney(extract.getMoney());
+		detail.setMsgType(MsgTypeMoneyTypeEnum.extract);
+		detail.setRead(false);
+		detail.setUser(new UserInfo(uid));
+		detail.setStateDesc(stateDesc);
+		detail.setExtraInfo(new Gson().toJson(listMsg));
+		return detail;
+	}
+
+
+	/**
+	 * 璐﹀彿楠岃瘉娑堟伅
+	 * 
+	 * @param valid
+	 * @param uid
+	 * @param beiZhu
+	 * @return
+	 */
+	public static MsgMoneyDetail createAlipayAccountValidMsg(AlipayAccountValidNormalHistory valid, Long uid,
+			String appName, BigDecimal money, String limitDay, boolean change) {
+		if (valid == null || uid == null || appName == null)
+			return null;
+		
+		String changeWay = "缁戝畾";
+		if (change) {
+			changeWay = "淇敼";
+		}
+		String name = filterName(valid.getName());
+		String account = filterAccount(valid.getAccount());
+		
+		List<CommonMsgItemVO> listMsg = new ArrayList<>();
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("楠岃瘉鐘舵��", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(String.format("鎻愮幇璐﹀彿%s鎴愬姛", changeWay), ClientTextStyleVO.COLOR_CONTENT)));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎻愮幇璐﹀彿", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(String.format("鏀粯瀹�:%s-濮撳悕:%s",account, name), ClientTextStyleVO.COLOR_CONTENT)));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎵撴閲戦", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO("楼" + money.setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT)));
+		
+		List<ClientTextStyleVO> contentList2 = new ArrayList<>();
+		contentList2.add(new ClientTextStyleVO("鎻愮幇璐﹀彿鏀跺埌涓�绗旓紝鏉ヨ嚜", ClientTextStyleVO.COLOR_CONTENT));
+		contentList2.add(new ClientTextStyleVO(appName, ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+		contentList2.add(new ClientTextStyleVO("鐨勮浆璐︼紝鍗崇粦瀹氭垚鍔�", ClientTextStyleVO.COLOR_CONTENT));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("璇存槑", ClientTextStyleVO.COLOR_TITLE),contentList2));
+		
+		List<ClientTextStyleVO> contentList = new ArrayList<>();
+		contentList.add(new ClientTextStyleVO(String.format("鎴愬姛%s鐨勬彁鐜拌处鍙�", changeWay), ClientTextStyleVO.COLOR_CONTENT));
+		contentList.add(new ClientTextStyleVO( limitDay+"", ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+		contentList.add(new ClientTextStyleVO("鍐呮棤娉曚慨鏀�", ClientTextStyleVO.COLOR_CONTENT));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),contentList));
+		
+		
+		MsgMoneyDetail detail = new MsgMoneyDetail();
+		detail.setAlipayAccountValid(valid);
+		detail.setCreateTime(new Date());
+		detail.setMoney(money);
+		detail.setMsgType(MsgTypeMoneyTypeEnum.extractValid);
+		detail.setRead(false);
+		detail.setUser(new UserInfo(uid));
+		detail.setExtraInfo(new Gson().toJson(listMsg));
+		return detail;
+	}
+	
+	
+	/**
+	 * 璐﹀彿楠岃瘉娑堟伅
+	 * 
+	 * @param valid
+	 * @param uid
+	 * @param beiZhu
+	 * @return
+	 */
+	public static MsgMoneyDetail createAlipayAccountValidFail(AlipayAccountValidNormalHistory valid, Long uid,
+			String appName, BigDecimal money, int limitDay, boolean change) {
+		if (valid == null || uid == null || appName == null)
+			return null;
+		
+		String changeWay = "缁戝畾";
+		if (change) {
+			changeWay = "淇敼";
+		}
+		
+		List<CommonMsgItemVO> listMsg = new ArrayList<>();
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("楠岃瘉鐘舵��", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(String.format("鎻愮幇璐﹀彿%s澶辫触", changeWay), ClientTextStyleVO.COLOR_CONTENT)));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鎻愮幇璐﹀彿", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(String.format("鏀粯瀹�:%s-濮撳悕:%s",valid.getAccount(), valid.getName()), ClientTextStyleVO.COLOR_CONTENT)));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍘熷洜", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO("璇蜂粩缁嗘牳瀵瑰~鍐欒处鍙锋槸鍚︽湁璇垨璺濅笂涓�娆′慨鏀规椂闀挎槸鍚﹁秴杩�30澶�", ClientTextStyleVO.COLOR_CONTENT)));
+	
+		if (!change) {
+			listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
+					new ClientTextStyleVO("鏃�", ClientTextStyleVO.COLOR_CONTENT)));
+		} else {
+			List<ClientTextStyleVO> contentList = new ArrayList<>();
+			contentList.add(new ClientTextStyleVO("璺濅笅涓�娆′慨鏀规椂闂磋繕鏈�", ClientTextStyleVO.COLOR_CONTENT));
+			contentList.add(new ClientTextStyleVO(limitDay+"", ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+			contentList.add(new ClientTextStyleVO("澶╁唴鏃犳硶淇敼", ClientTextStyleVO.COLOR_CONTENT));
+			listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),contentList));
+		}
+		
+		MsgMoneyDetail detail = new MsgMoneyDetail();
+		detail.setAlipayAccountValid(valid);
+		detail.setCreateTime(new Date());
+		detail.setMoney(money);
+		detail.setMsgType(MsgTypeMoneyTypeEnum.extractValid);
+		detail.setRead(false);
+		detail.setUser(new UserInfo(uid));
+		detail.setExtraInfo(new Gson().toJson(listMsg));
+		return detail;
+	}
+	
+	
+
+	/**
+	 * 杩斿埄鍒拌处
+	 * 
+	 * @param money
+	 * @param balance
+	 * @param orderId
+	 * @param goodsCount
+	 * @param uid
+	 * @param beiZhu
+	 * @return
+	 */
+	public static MsgMoneyDetail fanLiOrderReceivedMsg(BigDecimal money, BigDecimal balance, String orderId, int source,
+			 int goodsCount, Long uid, Date downTime, boolean useCoupon) {
+		if (money == null || balance == null || orderId == null || uid == null)
+			return null;
+
+		String fanliName = "鑷喘杩斿埄";
+		String sourceName = Constant.getSourceName(source) + "-杩斿埄璁㈠崟";
+		if (useCoupon) {
+			fanliName = "浣跨敤杩斿埄濂栧姳鍒�";
+		}
+		
+		List<CommonMsgItemVO> listMsg = new ArrayList<>();
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处璇︽儏", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(sourceName, ClientTextStyleVO.COLOR_CONTENT)));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("璁㈠崟鍙�", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(orderId, ClientTextStyleVO.COLOR_CONTENT)));
+
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("涓嬪崟鏃堕棿", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(TimeUtil.formatDate(downTime), ClientTextStyleVO.COLOR_CONTENT)));
+		
+		List<ClientTextStyleVO> contentList = new ArrayList<>();
+		contentList.add(new ClientTextStyleVO("鍏�", ClientTextStyleVO.COLOR_CONTENT));
+		contentList.add(new ClientTextStyleVO(goodsCount + "", ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+		contentList.add(new ClientTextStyleVO("浠跺晢鍝�", ClientTextStyleVO.COLOR_CONTENT));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍟嗗搧鏁伴噺", ClientTextStyleVO.COLOR_TITLE), contentList));
+		
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处绫荤洰", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(fanliName, ClientTextStyleVO.COLOR_CONTENT)));
+		
+		List<ClientTextStyleVO> contentList2 = new ArrayList<>();
+		contentList2.add(new ClientTextStyleVO("楼" + money.setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+		contentList2.add(new ClientTextStyleVO("锛堣处鎴蜂綑棰澛�"+ balance.setScale(2, BigDecimal.ROUND_DOWN) + "锛�", ClientTextStyleVO.COLOR_CONTENT));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处閲戦", ClientTextStyleVO.COLOR_TITLE), contentList2));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO("濡傛湁鐤戦棶璇疯仈绯讳汉宸ュ鏈�",	ClientTextStyleVO.COLOR_CONTENT)));
+		
+		MsgMoneyDetail detail = new MsgMoneyDetail();
+		detail.setBalance(balance);
+		detail.setCreateTime(new Date());
+		detail.setGoodsCount(goodsCount);
+		detail.setMoney(money);
+		detail.setMsgType(MsgTypeMoneyTypeEnum.fanli);
+		detail.setOrderId(orderId);
+		detail.setOrderType(source);
+		detail.setRead(false);
+		detail.setUser(new UserInfo(uid));
+		detail.setExtraInfo(new Gson().toJson(listMsg));
+		return detail;
+	}
+
+	
+
+	/**
+	 * 杩斿埄鍒拌处
+	 * 
+	 * @param money
+	 * @param balance
+	 * @param orderId
+	 * @param goodsCount
+	 * @param uid
+	 * @param beiZhu
+	 * @return
+	 */
+	public static MsgMoneyDetail shareOrderReceivedMsg(BigDecimal money, BigDecimal balance, int source, Long uid, Date receivedDate) {
+		if (money == null || balance == null || uid == null)
+			return null;
+
+		String sourceName = Constant.getSourceName(source) + "-鍒嗕韩璁㈠崟";
+		List<CommonMsgItemVO> listMsg = new ArrayList<>();
+		
+		List<ClientTextStyleVO> contentList = new ArrayList<>();
+		contentList.add(new ClientTextStyleVO(TimeUtil.getYearOnlyYYYY(receivedDate)+ "骞�", ClientTextStyleVO.COLOR_CONTENT));
+		contentList.add(new ClientTextStyleVO(TimeUtil.getMonthOnlyMM(receivedDate), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+		contentList.add(new ClientTextStyleVO("鏈�", ClientTextStyleVO.COLOR_CONTENT));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("缁撶畻鏈堝害", ClientTextStyleVO.COLOR_TITLE), contentList));
+		
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处璇︽儏", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(sourceName, ClientTextStyleVO.COLOR_CONTENT)));
+		
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处绫荤洰", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO("鍒嗕韩濂栭噾", ClientTextStyleVO.COLOR_CONTENT)));
+		
+		List<ClientTextStyleVO> contentList2 = new ArrayList<>();
+		contentList2.add(new ClientTextStyleVO("楼" + money.setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+		contentList2.add(new ClientTextStyleVO("锛堣处鎴蜂綑棰澛�"+ balance.setScale(2, BigDecimal.ROUND_DOWN) + "锛�", ClientTextStyleVO.COLOR_CONTENT));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处閲戦", ClientTextStyleVO.COLOR_TITLE), contentList2));
+		
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO("濡傛湁鐤戦棶璇疯仈绯讳汉宸ュ鏈�",	ClientTextStyleVO.COLOR_CONTENT)));
+		
+		MsgMoneyDetail detail = new MsgMoneyDetail();
+		detail.setBalance(balance);
+		detail.setCreateTime(new Date());
+		detail.setMoney(money);
+		detail.setMsgType(MsgTypeMoneyTypeEnum.share);
+		detail.setOrderType(source);
+		detail.setRead(false);
+		detail.setUser(new UserInfo(uid));
+		detail.setExtraInfo(new Gson().toJson(listMsg));
+		return detail;
+	}
+	
+	/**
+	 * 杩斿埄缁存潈
+	 * 
+	 * @param uid
+	 * @param orderId
+	 * @param money
+	 * @param balance
+	 * @param beiZhu
+	 * @return
+	 */
+	public static MsgMoneyDetail createOrderWeiQuanMsg(Long uid, String orderId, int source, BigDecimal money, 
+			BigDecimal fanliMoney, int goodsCount, Date downTime, int type) {
+		if (money == null || orderId == null || money == null || uid == null)
+			return null;
+		
+		MsgTypeMoneyTypeEnum typeEnum = null;
+		String sourceName = Constant.getSourceName(source);
+		if (Constant.TYPE_REBATE == type) {
+			sourceName += "-杩斿埄璁㈠崟";
+			typeEnum = MsgTypeMoneyTypeEnum.fanliWeiQuan;
+		} else if (Constant.TYPE_SHAER == type) {
+			sourceName += "-鍒嗕韩璁㈠崟";
+			typeEnum = MsgTypeMoneyTypeEnum.shareWeiQuan;
+		} 
+
+		String weiquan = "璁㈠崟鍞悗";
+		String weiquanMoney = "鍏ㄩ閫�鍥�";
+		if (fanliMoney.compareTo(money) > 0) {
+			weiquan = "璁㈠崟閮ㄥ垎鍞悗";
+			weiquan = "閮ㄥ垎閫�鍥�";
+		}
+		
+		List<CommonMsgItemVO> listMsg = new ArrayList<>();
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("閫�鍥炶鎯�", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(sourceName, ClientTextStyleVO.COLOR_CONTENT)));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("璁㈠崟鍙�", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(orderId, ClientTextStyleVO.COLOR_CONTENT)));
+
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("涓嬪崟鏃堕棿", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(TimeUtil.formatDate(downTime), ClientTextStyleVO.COLOR_CONTENT)));
+		
+		List<ClientTextStyleVO> contentList = new ArrayList<>();
+		contentList.add(new ClientTextStyleVO("鍏�", ClientTextStyleVO.COLOR_CONTENT));
+		contentList.add(new ClientTextStyleVO(goodsCount + "", ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+		contentList.add(new ClientTextStyleVO("浠跺晢鍝�", ClientTextStyleVO.COLOR_CONTENT));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍟嗗搧鏁伴噺", ClientTextStyleVO.COLOR_TITLE), contentList));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("閫�鍥炲師鍥�", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(weiquan, ClientTextStyleVO.COLOR_CONTENT)));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处閲戦", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO("楼" +fanliMoney.setScale(2, BigDecimal.ROUND_DOWN) + "锛堝師鍒拌处閲戦锛�", ClientTextStyleVO.COLOR_CONTENT)));
+		
+		List<ClientTextStyleVO> contentList2 = new ArrayList<>();
+		contentList2.add(new ClientTextStyleVO("楼" + money.setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+		contentList2.add(new ClientTextStyleVO("锛�"+ weiquanMoney + "锛�", ClientTextStyleVO.COLOR_CONTENT));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("閫�鍥為噾棰�", ClientTextStyleVO.COLOR_TITLE), contentList2));
+		
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO("濡傛湁鐤戦棶璇疯仈绯讳汉宸ュ鏈�",	ClientTextStyleVO.COLOR_CONTENT)));
+		
+		
+		MsgMoneyDetail detail = new MsgMoneyDetail();
+		detail.setCreateTime(new Date());
+		detail.setMoney(money);
+		detail.setMsgType(typeEnum);
+		detail.setOrderId(orderId);
+		detail.setOrderType(source);
+		detail.setRead(false);
+		detail.setUser(new UserInfo(uid));
+		detail.setExtraInfo(new Gson().toJson(listMsg));
+		return detail;
+	}
+
+	/**
+	 * 閭�璇疯禋鍒拌处
+	 * 
+	 * @param money
+	 * @param balance
+	 * @param orderCount
+	 * @param goodsCount
+	 * @param uid
+	 * @param beiZhu
+	 * @return
+	 */
+	public static MsgMoneyDetail createTeamReceivedMsg(Long uid, BigDecimal money, BigDecimal balance, Date receivedDate,
+			String teamName) {
+		if (money == null || balance == null || uid == null)
+			return null;
+
+		List<CommonMsgItemVO> listMsg = new ArrayList<>();
+		List<ClientTextStyleVO> contentList = new ArrayList<>();
+		contentList.add(new ClientTextStyleVO(TimeUtil.getYearOnlyYYYY(receivedDate)+ "骞�", ClientTextStyleVO.COLOR_CONTENT));
+		contentList.add(new ClientTextStyleVO(TimeUtil.getMonthOnlyMM(receivedDate), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+		contentList.add(new ClientTextStyleVO("鏈�", ClientTextStyleVO.COLOR_CONTENT));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("缁撶畻鏈堝害", ClientTextStyleVO.COLOR_TITLE), contentList));
+		
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处绫荤洰", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO(teamName, ClientTextStyleVO.COLOR_CONTENT)));
+		
+		List<ClientTextStyleVO> contentList2 = new ArrayList<>();
+		contentList2.add(new ClientTextStyleVO("楼" + money.setScale(2, BigDecimal.ROUND_DOWN), ClientTextStyleVO.COLOR_HIGHLIGHT_CONTENT));
+		contentList2.add(new ClientTextStyleVO("锛堣处鎴蜂綑棰澛� "+ balance.setScale(2, BigDecimal.ROUND_DOWN)+"锛�", ClientTextStyleVO.COLOR_CONTENT));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("鍒拌处閲戦", ClientTextStyleVO.COLOR_TITLE), contentList2));
+		listMsg.add(CommonMsgItemVOFactory.createMsgItemVO(new ClientTextStyleVO("澶囨敞", ClientTextStyleVO.COLOR_TITLE),
+				new ClientTextStyleVO("濡傛湁鐤戦棶璇疯仈绯讳汉宸ュ鏈�",	ClientTextStyleVO.COLOR_CONTENT)));
+		
+		MsgMoneyDetail detail = new MsgMoneyDetail();
+		detail.setBalance(balance);
+		detail.setCreateTime(new Date());
+		detail.setMoney(money);
+		detail.setMsgType(MsgTypeMoneyTypeEnum.invite);
+		detail.setRead(false);
+		detail.setUser(new UserInfo(uid));
+		detail.setExtraInfo(new Gson().toJson(listMsg));
+		return detail;
+	}
+
+	
+	private static String filterName(String oldname) {
+		String name = "";
+		if (StringUtil.isNullOrEmpty(oldname))
+			return name;
+				
+		if (oldname.length() > 2)
+			for (int i = 0; i < oldname.length(); i++) {
+				if (i == 0)
+					name += oldname.charAt(i);
+				else
+					name += "*";
+			}
+		else
+			name = oldname.charAt(0) + "*";
+
+		return name;
+	}
+	
+	public static String filterAccount(String alipayAccount) {
+		String account = "";
+		if (StringUtil.isNullOrEmpty(alipayAccount))
+			return account;
+		
+		if (alipayAccount.indexOf("@") > -1) {// 閭
+			int index = alipayAccount.indexOf("@");
+
+			for (int i = 0; i < alipayAccount.length(); i++) {
+				if (i < 3 || i >= index)
+					account += alipayAccount.charAt(i);
+				else
+					account += "*";
+			}
+		} else if (StringUtil.isMobile(alipayAccount)) {// 鐢佃瘽
+			account = alipayAccount.substring(0, 7) + "****";
+		} else {// 鍏朵粬
+			if (alipayAccount.length() >= 6) {
+				for (int i = 0; i < alipayAccount.length(); i++) {
+					if (i < alipayAccount.length() - 4)
+						account += alipayAccount.charAt(i);
+					else
+						account += "*";
+				}
+			} else {
+				for (int i = 0; i < alipayAccount.length(); i++) {
+					if (i <  alipayAccount.length() - 1)
+						account += alipayAccount.charAt(i);
+					else
+						account += "*";
+				}
+			}
+		}
+		return account;
+	}
+	
+	
+	/**
+	 * 绾㈠寘鐩稿叧淇℃伅
+	 * @param uid
+	 * @param type
+	 * @param content
+	 * @param beiZhu
+	 * @return
+	 */
+	public static MsgMoneyDetail createRedPackMsg(Long uid, MsgTypeMoneyTypeEnum type, String content, String beiZhu) {
+		if (uid == null || type == null || StringUtil.isNullOrEmpty(content))
+			return null;
+		MsgMoneyDetail detail = new MsgMoneyDetail();
+		detail.setUser(new UserInfo(uid));
+		detail.setRead(false);
+		detail.setContent(content);
+		detail.setMsgType(type);
+		detail.setBeiZhu(beiZhu);
+		detail.setCreateTime(new Date());
+		return detail;
+	}
+	
+	
+	public static MsgMoneyDetail createSystemEqualizeMsg(Long uid, String reason, BigDecimal money, BigDecimal balance,
+			String beiZhu) {
+		if (money == null || money == null || uid == null)
+			return null;
+
+		MsgMoneyDetail detail = new MsgMoneyDetail();
+		detail.setBalance(balance);
+		detail.setBeiZhu(beiZhu);
+		detail.setCreateTime(new Date());
+		detail.setMoney(money);
+		detail.setMsgType(MsgTypeMoneyTypeEnum.systemEqualize);
+		detail.setOrderId(reason);
+		detail.setRead(false);
+		detail.setUser(new UserInfo(uid));
+		return detail;
+	}
+	
+
+}

--
Gitblit v1.8.0