From e1a62ec62e7331d97af9302e90e1ce44af8235eb Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期三, 27 一月 2021 15:26:55 +0800 Subject: [PATCH] 拼多多授权绑定 --- fanli/src/main/java/com/yeshi/fanli/service/inter/help/AppPageNotificationService.java | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/help/AppPageNotificationService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/help/AppPageNotificationService.java index 94b0df8..83b3a6a 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/help/AppPageNotificationService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/help/AppPageNotificationService.java @@ -2,6 +2,7 @@ import java.util.List; +import com.yeshi.fanli.entity.SystemEnum; import com.yeshi.fanli.entity.bus.help.AppPageNotification; /** @@ -18,7 +19,7 @@ * @param type * @return */ - public AppPageNotification getAppPageNotificationByType(String type); + public AppPageNotification getAppPageNotificationByType(String type, SystemEnum system); /** @@ -58,13 +59,16 @@ * 鍚庣鍒楄〃鏌ヨ * @return */ - public List<AppPageNotification> listQuery(long start, int count,String key, Integer show, Integer canClose); + public List<AppPageNotification> listQuery(long start, int count,String key, Integer show, Integer canClose, SystemEnum system); - public long countQuery(String key, Integer show, Integer canClose); + public long countQuery(String key, Integer show, Integer canClose, SystemEnum system); - public AppPageNotification getValidNotificationByTypeCache(String type); + public AppPageNotification getValidNotificationByTypeCache(String type, String platform, Integer versionCode, SystemEnum system); public void updateByPrimaryKey(AppPageNotification record); + + public void setVersions(Long id, List<Long> versions) throws Exception; + } -- Gitblit v1.8.0