admin
2019-07-11 3824cbcaec6e6c67418d5280a53e9c2fedeef6f9
fanli/src/main/java/com/yeshi/fanli/service/inter/user/ExtractAuditRecordService.java
@@ -1,6 +1,7 @@
package com.yeshi.fanli.service.inter.user;
import java.util.List;
import java.util.Map;
import com.yeshi.fanli.entity.bus.user.ExtractAuditRecord;
@@ -109,4 +110,46 @@
   public List<ExtractAuditRecord> getListbyExtractId(Long extractId);
   public List<ExtractAuditRecord> getbyExtractId(Long extractId);
   /**
    * 统计审核次数
    * @param state
    * @param type
    * @param years
    * @param startTime
    * @param endTime
    * @return
    */
   public List<Map<String, Object>>countAuditTotal(Integer state, Integer type, String years, String startTime,
         String endTime) throws Exception;
   /**
    * 统计申请提的现总金额
    * @param state
    * @param type
    * @param years
    * @param startTime
    * @param endTime
    * @return
    */
   public List<Map<String, Object>> countExtractApplyMoney(Integer state, Integer type, String years, String startTime,
         String endTime) throws Exception;
   /**
    * 统计申请提的现总次数
    * @param state
    * @param type
    * @param years
    * @param startTime
    * @param endTime
    * @return
    */
   public List<Map<String, Object>> countExtractApplyNumber(Integer state, Integer type, String years, String startTime,
         String endTime) throws Exception;
}