From 69ef1fc76ac57e8669cb7bd084c35b0ac447f703 Mon Sep 17 00:00:00 2001
From: yujian <yujian>
Date: 星期五, 08 三月 2019 14:47:46 +0800
Subject: [PATCH] 活跃中自动领取券
---
fanli/src/main/java/com/yeshi/fanli/service/impl/order/LostOrderServiceImpl.java | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/order/LostOrderServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/order/LostOrderServiceImpl.java
index 576f0d4..63fc1fa 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/order/LostOrderServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/order/LostOrderServiceImpl.java
@@ -277,4 +277,19 @@
public long countQuery(String key, Integer state, Integer handleType) {
return lostOrderMapper.countQuery(key, state, handleType);
}
+
+
+ @Override
+ public List<Map<String, Object>> countLostNum( Integer dateType, Integer resultCode,
+ String year, String startTime, String endTime) throws Exception {
+ return lostOrderMapper.countLostNum(dateType, resultCode, year, startTime, endTime);
+ }
+
+
+ @Override
+ public List<Map<String, Object>> countAppealMoney( Integer dateType, String year, String startTime,
+ String endTime) throws Exception {
+ return lostOrderMapper.countAppealMoney(dateType, year, startTime, endTime);
+ }
+
}
--
Gitblit v1.8.0