From b44f60ae27bbe0b7aec29414c629747b7755e964 Mon Sep 17 00:00:00 2001
From: yujian <yujian@123.com>
Date: 星期三, 09 十月 2019 09:52:38 +0800
Subject: [PATCH] Merge branch 'div' of ssh://193.112.35.168:29418/fanli-server into div

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/goods/ShareGoodsServiceImpl.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/goods/ShareGoodsServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/goods/ShareGoodsServiceImpl.java
index 590db8b..446ca5b 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/goods/ShareGoodsServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/goods/ShareGoodsServiceImpl.java
@@ -204,10 +204,10 @@
 		}
 
 		UserShareGoodsHistory history = new UserShareGoodsHistory();
-		history.setTkCode(tbLink.getTaoToken());
+		history.setTkCode(TaoBaoUtil.filterTaoToken(tbLink.getTaoToken()));
 		history.setLink(tbLink.getClickUrl());
 		history.setQuanLink(tbLink.getCouponLink());
-		history.setTkCode(tbLink.getTaoToken());
+		history.setTkCode(TaoBaoUtil.filterTaoToken(tbLink.getTaoToken()));
 
 		history.setCreateTime(new Date());
 		history.setGoodsId(goods.getAuctionId());
@@ -366,16 +366,16 @@
 
 			UserShareGoodsHistory history = new UserShareGoodsHistory();
 			history.setId(userShareGoodsHistory.getId());
-			history.setTkCode(tbLink.getTaoToken());
+			history.setTkCode(TaoBaoUtil.filterTaoToken(tbLink.getTaoToken()));
 			history.setLink(tbLink.getClickUrl());
 			history.setQuanLink(tbLink.getCouponLink());
-			history.setTkCode(tbLink.getTaoToken());
+			history.setTkCode(TaoBaoUtil.filterTaoToken(tbLink.getTaoToken()));
 			userShareGoodsHistoryMapper.updateByPrimaryKeySelective(history);
 
-			userShareGoodsHistory.setTkCode(tbLink.getTaoToken());
+			userShareGoodsHistory.setTkCode(TaoBaoUtil.filterTaoToken(tbLink.getTaoToken()));
 			userShareGoodsHistory.setLink(tbLink.getClickUrl());
 			userShareGoodsHistory.setQuanLink(tbLink.getCouponLink());
-			userShareGoodsHistory.setTkCode(tbLink.getTaoToken());
+			userShareGoodsHistory.setTkCode(TaoBaoUtil.filterTaoToken(tbLink.getTaoToken()));
 		}
 
 		return userShareGoodsHistory;

--
Gitblit v1.8.0