admin
2020-03-01 ec8a1c6f81b5747e9efce86faaba33d10df7f61d
fanli/src/main/java/com/yeshi/fanli/service/inter/money/extract/ExtractAuditRecordService.java
@@ -1,8 +1,10 @@
package com.yeshi.fanli.service.inter.money.extract;
import java.util.Date;
import java.util.List;
import java.util.Map;
import com.yeshi.fanli.dto.ChartTDO;
import com.yeshi.fanli.entity.admin.count.CountUserInfo;
import com.yeshi.fanli.entity.bus.user.ExtractAuditRecord;
public interface ExtractAuditRecordService {
@@ -112,44 +114,34 @@
   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;
   public List<CountUserInfo> getApplyMoney(Date startTime, Date endTime) throws Exception;
   public void initApplyMoneyCount();
   /**
    * 统计申请提的现总次数
    * @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;
   List<CountUserInfo> geApplyNumber(Date startTime, Date endTime) throws Exception;
   public void initApplyNumberCount();
   public void initAuditCount();
   public List<CountUserInfo> getAuditCount(Date startTime, Date endTime, Integer state) throws Exception;
   
   
}