| | |
| | | package com.yeshi.fanli.service.inter.user;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.List;
|
| | | import java.util.Map;
|
| | |
|
| | |
| | |
|
| | | public interface ExtractService {
|
| | |
|
| | | public List<Extract> getExtractInfoByUid(long uid);
|
| | |
|
| | | /**
|
| | | * 提现申请
|
| | | *
|
| | |
| | | */
|
| | | public Integer addExtract(Extract extract);
|
| | |
|
| | | public List<Extract> getExtractList(int i);
|
| | |
|
| | | public int getCount();
|
| | | // public int getCount();
|
| | |
|
| | | /**
|
| | | * 通过
|
| | |
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | public void checkExtract(String uid) throws ExtractException ;
|
| | | public void checkExtract(Long uid) throws ExtractException;
|
| | |
|
| | | public Extract selectByPrimaryKey(Long id);
|
| | |
|
| | |
| | | * @param info
|
| | | */
|
| | | public void processExtractResult(AlipayTransferResultInfo info);
|
| | | |
| | | |
| | |
|
| | | public void testExtractSuccess(Long id);
|
| | |
|
| | | /**
|
| | | * 统计今日提现
|
| | | * 统计当日提现
|
| | | * |
| | | * @param uid
|
| | | * @param day yyyy-MM-dd
|
| | | * @return
|
| | | */
|
| | | public double countTodayMoney(Long uid);
|
| | | public BigDecimal sumTodayApplyMoney(Long uid, String day);
|
| | |
|
| | | }
|