From 61054e5f602d67349b83c968b342afb876ac7858 Mon Sep 17 00:00:00 2001 From: xhxu Date: Thu, 9 Dec 2021 16:46:41 +0800 Subject: [PATCH] =?UTF-8?q?/=E3=80=81topic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/iformall/domain/po/WxTopic.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxTopic.java b/mallinkService/src/main/java/com/iformall/domain/po/WxTopic.java index ea284a944..b2103ef76 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxTopic.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxTopic.java @@ -86,6 +86,16 @@ public class WxTopic extends TenantEntity { return Constant.mainPageUrl; if(EnumWxTopicType.SPECIAL_TOPIC.getCode().equals(topicType)) return Constant.mainPageUrl + "?type=td&id="+id; + if(EnumWxTopicType.FLASH_SALE.getCode().equals(topicType)) + return Constant.mainPageUrl + "?type=rb"; + if(EnumWxTopicType.PRESS.getCode().equals(topicType)) + return Constant.mainPageUrl + "?type=mb"; + if(EnumWxTopicType.GROUP.getCode().equals(topicType)) + return Constant.mainPageUrl + "?type=ms"; + if(EnumWxTopicType.CARD_MULTIMCH.getCode().equals(topicType)) + return Constant.mainPageUrl + "?type=dc"; + if(EnumWxTopicType.CREDIT.getCode().equals(topicType)) + return Constant.mainPageUrl + "?type=jf"; return Constant.mainPageUrl; }