From 64bd2204be459b47e008b79073a143684140ff24 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期六, 04 七月 2020 18:20:45 +0800
Subject: [PATCH] mapper xml文件位置移动

---
 fanli/src/main/java/com/yeshi/fanli/controller/apph5/AppH5HelpCenterController.java |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/apph5/AppH5HelpCenterController.java b/fanli/src/main/java/com/yeshi/fanli/controller/apph5/AppH5HelpCenterController.java
index 60a1ef3..2d635aa 100644
--- a/fanli/src/main/java/com/yeshi/fanli/controller/apph5/AppH5HelpCenterController.java
+++ b/fanli/src/main/java/com/yeshi/fanli/controller/apph5/AppH5HelpCenterController.java
@@ -45,7 +45,6 @@
 	/**
 	 * 鏌ヨ甯姪鍒楄〃
 	 * @param callback
-	 * @param pageIndex
 	 * @param pageSize
 	 * @param key
 	 * @param out
@@ -66,7 +65,7 @@
 			if (pageId == null)
 				pageId = 0L;
 
-			List<HelpCenter> list1 = helpCenterService.listValid(pageId, pageSize, key, cid);
+			List<HelpCenter> list1 = helpCenterService.listValid(pageId, pageSize, key, cid,acceptData.getSystem());
 			List<HelpCenter> list = new ArrayList<>();
 			if (list1 != null && list1.size() > 0)
 				list.addAll(list1);
@@ -81,7 +80,7 @@
 				// 鐗堟湰杩囨护
 				int version = Integer.parseInt(acceptData.getVersion());
 				String platform = acceptData.getPlatform().toLowerCase();
-				List<AppVersionInfo> versionList = appVersionService.listByPlatformAndMinVersionCode(platform, version);
+				List<AppVersionInfo> versionList = appVersionService.listByPlatformAndMinVersionCode(platform, version,acceptData.getSystem());
 				if (versionList == null || versionList.size() <= 0) {
 					list.clear();
 				} else {
@@ -159,7 +158,7 @@
 		try {
 			List<HelpClass> resultList = new ArrayList<>();
 
-			List<HelpClass> list = helpClassService.getClassByState(1);
+			List<HelpClass> list = helpClassService.getClassByState(1,acceptData.getSystem());
 			if (list != null && list.size() > 0) {
 				resultList.addAll(list);
 			}
@@ -167,7 +166,7 @@
 			// 鐗堟湰杩囨护
 			int version = Integer.parseInt(acceptData.getVersion());
 			String platform = acceptData.getPlatform().toLowerCase();
-			List<AppVersionInfo> versionList = appVersionService.listByPlatformAndMinVersionCode(platform, version);
+			List<AppVersionInfo> versionList = appVersionService.listByPlatformAndMinVersionCode(platform, version,acceptData.getSystem());
 			if (versionList == null || versionList.size() <= 0) {
 				resultList.clear();
 			} else {

--
Gitblit v1.8.0