yujian
2020-05-09 7e7db2fa55a9a3af46d4fd8ede0dee147f101d64
fanli/src/main/java/com/yeshi/fanli/service/inter/money/extract/ExtractAuditRecordService.java
@@ -1,8 +1,8 @@
package com.yeshi.fanli.service.inter.money.extract;
import java.math.BigDecimal;
import java.util.List;
import com.yeshi.fanli.dto.ChartTDO;
import com.yeshi.fanli.entity.bus.user.ExtractAuditRecord;
public interface ExtractAuditRecordService {
@@ -112,44 +112,11 @@
   public List<ExtractAuditRecord> getbyExtractId(Long extractId);
   /**
    * 统计审核次数
    * @param state
    * @param type
    * @param years
    * @param startTime
    * @param endTime
    * @return
    */
   public List<ChartTDO>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<ChartTDO> countExtractApplyMoney(Integer state, Integer type, String years, String startTime,
         String endTime) throws Exception;
   public Long countApplyNumberByDay(String preDay);
   /**
    * 统计申请提的现总次数
    * @param state
    * @param type
    * @param years
    * @param startTime
    * @param endTime
    * @return
    */
   public List<ChartTDO> countExtractApplyNumber(Integer state, Integer type, String years, String startTime,
         String endTime) throws Exception;
   public BigDecimal countApplyMoneyByDay(String preDay);
   public Long countAuditNumberByDay(int state, String preDay);
   
}