From 8cb7ec4a35a38ae91d0eed17cde711e81d2b2bbf Mon Sep 17 00:00:00 2001 From: yujian <yujian> Date: 星期二, 14 五月 2019 11:37:49 +0800 Subject: [PATCH] 合并 --- fanli/src/main/java/com/yeshi/fanli/controller/client/PushController.java | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/client/PushController.java b/fanli/src/main/java/com/yeshi/fanli/controller/client/PushController.java index 1225be7..c96d3ea 100644 --- a/fanli/src/main/java/com/yeshi/fanli/controller/client/PushController.java +++ b/fanli/src/main/java/com/yeshi/fanli/controller/client/PushController.java @@ -62,7 +62,7 @@ private PushService pushService; @Resource - private PushGoodsService PushGoodsService; + private PushGoodsService pushGoodsService; @Resource private PushGoodsGroupService pushGoodsGroupService; @@ -81,7 +81,8 @@ @RequestMapping(value = "callback", method = RequestMethod.POST) public void callback(AcceptData acceptData, String pushId, PrintWriter out) { - BusinessSystem system = businessSystemService.getBusinessSystemCache(acceptData.getPlatform(), acceptData.getPackages()); + BusinessSystem system = businessSystemService.getBusinessSystemCache(acceptData.getPlatform(), + acceptData.getPackages()); if (system == null) { out.print(JsonUtil.loadFalseResult("涓嶅瓨鍦ㄨ绯荤粺")); return; @@ -204,11 +205,11 @@ // 璁惧娉ㄥ唽鏃堕棿 Date createTime = deviceActive.getCreateTime(); - count = PushGoodsService.countHistoryByPushTime(uid, createTime); + count = pushGoodsService.countHistoryByPushTime(uid, createTime); int pageSize = Constant.PAGE_SIZE; - list = PushGoodsService.listHistoryByPushTime((page - 1) * pageSize, pageSize, uid, createTime); + list = pushGoodsService.listHistoryByPushTime((page - 1) * pageSize, pageSize, uid, createTime); if (list != null && list.size() > 0) { for (PushGoods pushGoods : list) { JSONObject result = new JSONObject(); -- Gitblit v1.8.0