yujian
2019-12-19 626d711cb15896055c13fe344eb7fcc824589715
fanli/src/main/java/com/yeshi/fanli/service/impl/money/extract/ExtractAuditRecordServiceImpl.java
@@ -1,7 +1,6 @@
package com.yeshi.fanli.service.impl.money.extract;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
@@ -9,6 +8,7 @@
import com.google.gson.Gson;
import com.yeshi.fanli.dao.mybatis.ExtractAuditRecordMapper;
import com.yeshi.fanli.dto.ChartTDO;
import com.yeshi.fanli.dto.money.ExtractOrderStatisticDTO;
import com.yeshi.fanli.entity.bus.user.ExtractAuditRecord;
import com.yeshi.fanli.service.inter.money.extract.ExtractAuditRecordService;
@@ -106,19 +106,19 @@
   }
   @Override
   public List<Map<String, Object>> countAuditTotal(Integer state, Integer type, String years, String startTime,
   public List<ChartTDO> countAuditTotal(Integer state, Integer type, String years, String startTime,
         String endTime) throws Exception {
      return extractAuditRecordMapper.countAuditTotal(state, type, years, startTime, endTime);
   }
   @Override
   public List<Map<String, Object>> countExtractApplyMoney(Integer state, Integer type, String years, String startTime,
   public List<ChartTDO> countExtractApplyMoney(Integer state, Integer type, String years, String startTime,
         String endTime) throws Exception {
      return extractAuditRecordMapper.countExtractMoney(state, type, years, startTime, endTime);
   }
   @Override
   public List<Map<String, Object>> countExtractApplyNumber(Integer state, Integer type, String years,
   public List<ChartTDO> countExtractApplyNumber(Integer state, Integer type, String years,
         String startTime, String endTime) throws Exception {
      return extractAuditRecordMapper.countExtractApplyNumber(state, type, years, startTime, endTime);
   }