| | |
| | | package com.yeshi.fanli.service.impl.money.extract;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.List;
|
| | |
|
| | | import javax.annotation.Resource;
|
| | |
| | |
|
| | | import com.google.gson.Gson;
|
| | | import com.yeshi.fanli.dao.mybatis.ExtractAuditRecordMapper;
|
| | | import com.yeshi.fanli.dto.ChartTDO;
|
| | | import com.yeshi.fanli.dao.user.count.CountUserInfoDao;
|
| | | import com.yeshi.fanli.dto.money.ExtractOrderStatisticDTO;
|
| | | import com.yeshi.fanli.entity.bus.user.ExtractAuditRecord;
|
| | | import com.yeshi.fanli.service.inter.money.extract.ExtractAuditRecordService;
|
| | |
| | |
|
| | | @Resource
|
| | | private ExtractAuditRecordMapper extractAuditRecordMapper;
|
| | | |
| | | @Resource
|
| | | private CountUserInfoDao countUserInfoDao;
|
| | |
|
| | | @Override
|
| | | public List<ExtractAuditRecord> getList(int pageIndex, int pageSize, String key, String startTime, String endTime) {
|
| | |
| | | return extractAuditRecordMapper.getbyExtractId(extractId);
|
| | | }
|
| | |
|
| | | |
| | | @Override
|
| | | public List<ChartTDO> countAuditTotal(Integer state, Integer type, String years, String startTime,
|
| | | String endTime) throws Exception {
|
| | | return extractAuditRecordMapper.countAuditTotal(state, type, years, startTime, endTime);
|
| | | public Long countAuditNumberByDay(int state, String preDay) {
|
| | | return extractAuditRecordMapper.countAuditTotal(state, preDay);
|
| | | }
|
| | |
|
| | | |
| | | |
| | | @Override
|
| | | public List<ChartTDO> countExtractApplyMoney(Integer state, Integer type, String years, String startTime,
|
| | | String endTime) throws Exception {
|
| | | return extractAuditRecordMapper.countExtractMoney(state, type, years, startTime, endTime);
|
| | | public BigDecimal countApplyMoneyByDay(String preDay) {
|
| | | return extractAuditRecordMapper.countApplyExtractMoney(preDay);
|
| | | }
|
| | |
|
| | | |
| | | @Override
|
| | | public List<ChartTDO> countExtractApplyNumber(Integer state, Integer type, String years,
|
| | | String startTime, String endTime) throws Exception {
|
| | | return extractAuditRecordMapper.countExtractApplyNumber(state, type, years, startTime, endTime);
|
| | | public Long countApplyNumberByDay(String preDay) {
|
| | | return extractAuditRecordMapper.countApplyNumberByDay(preDay);
|
| | | }
|
| | | |
| | |
|
| | | }
|