| | |
| | | package com.yeshi.fanli.service.inter.money.extract;
|
| | |
|
| | | import java.util.Date;
|
| | | import java.math.BigDecimal;
|
| | | import java.util.List;
|
| | |
|
| | | 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 {
|
| | |
| | | public List<ExtractAuditRecord> getbyExtractId(Long extractId);
|
| | |
|
| | |
|
| | | |
| | | /**
|
| | | * 统计申请提的现总金额
|
| | | * @param state
|
| | | * @param startTime
|
| | | * @param endTime
|
| | | * @return
|
| | | */
|
| | | public List<CountUserInfo> getApplyMoney(Date startTime, Date endTime) throws Exception;
|
| | | |
| | | public void initApplyMoneyCount();
|
| | | |
| | | /**
|
| | | * 统计申请提的现总次数
|
| | | * @param startTime
|
| | | * @param endTime
|
| | | * @return
|
| | | */
|
| | | List<CountUserInfo> geApplyNumber(Date startTime, Date endTime) throws Exception;
|
| | | public Long countApplyNumberByDay(String preDay);
|
| | |
|
| | | public void initApplyNumberCount();
|
| | | public BigDecimal countApplyMoneyByDay(String preDay);
|
| | |
|
| | | public void initAuditCount();
|
| | | public Long countAuditNumberByDay(int state, String preDay);
|
| | |
|
| | | public List<CountUserInfo> getAuditCount(Date startTime, Date endTime, Integer state) throws Exception;
|
| | |
|
| | |
|
| | |
|
| | | |
| | |
|
| | | }
|