From 6fb64247b9f4a74c386c06251fb678dfa9f48ada Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期六, 28 十二月 2019 10:31:18 +0800 Subject: [PATCH] 版本修改 --- fanli/src/main/java/com/yeshi/fanli/controller/client/v2/BrandControllerV2.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/BrandControllerV2.java b/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/BrandControllerV2.java index 29abdfa..3d2b8a9 100644 --- a/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/BrandControllerV2.java +++ b/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/BrandControllerV2.java @@ -351,7 +351,7 @@ @RequestMapping(value = "getList", method = RequestMethod.POST) public void getList(AcceptData acceptData, Integer page, Long cid, Long uid, PrintWriter out) { if ("ios".equalsIgnoreCase(acceptData.getPlatform())) { - if (VersionUtil.greaterThan_2_1(acceptData.getPlatform(), acceptData.getVersion())) { + if (VersionUtil.greaterThan_2_0_5(acceptData.getPlatform(), acceptData.getVersion())) { getListV3(acceptData, page, cid, uid, out); return; } @@ -406,7 +406,7 @@ public void getShopInfoV2(AcceptData acceptData, Integer page, Long id, Long uid, PrintWriter out) { if ("ios".equalsIgnoreCase(acceptData.getPlatform())) { - if (VersionUtil.greaterThan_2_1(acceptData.getPlatform(), acceptData.getVersion())) { + if (VersionUtil.greaterThan_2_0_5(acceptData.getPlatform(), acceptData.getVersion())) { getShopInfoV3(acceptData, page, id, uid, out); return; } @@ -575,7 +575,7 @@ @RequestMapping(value = "getHistoryV2", method = RequestMethod.POST) public void getHistoryV2(AcceptData acceptData, Integer page, Long uid, Integer type, PrintWriter out) { if ("ios".equalsIgnoreCase(acceptData.getPlatform())) { - if (VersionUtil.greaterThan_2_1(acceptData.getPlatform(), acceptData.getVersion())) { + if (VersionUtil.greaterThan_2_0_5(acceptData.getPlatform(), acceptData.getVersion())) { getHistoryV3(acceptData, page, uid, type, out); return; } -- Gitblit v1.8.0