| | |
| | | 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);
|
| | |
|
| | | /**
|
| | | * 提现申请
|
| | | *
|
| | |
| | | * @return 返回如果为null,则提现申请提交成功。如果为1�?,已超过当日提现次数或提现金额!如果�?,提现金额大于我的红包!
|
| | | */
|
| | | public Integer addExtract(Extract extract);
|
| | |
|
| | | public List<Extract> getExtractList(int i);
|
| | |
|
| | | public int getCount();
|
| | | |
| | | // public int getCount();
|
| | |
|
| | | /**
|
| | | * 通过
|
| | |
| | | * @throws ObjectStateException
|
| | | * @throws NotExistObjectException
|
| | | */
|
| | | public void rejectExtract(long id, String reason, long extractTime, AdminUser adminUser)
|
| | | public void rejectExtract(long id, String reason, AdminUser adminUser)
|
| | | throws ObjectStateException, NotExistObjectException;
|
| | |
|
| | | /**
|
| | |
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | public void checkExtract(String uid) throws ExtractException ;
|
| | | public void checkExtract(Long uid) throws ExtractException ;
|
| | |
|
| | | public Extract selectByPrimaryKey(Long id);
|
| | |
|
| | |
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | public double countTodayMoney(Long uid);
|
| | | public BigDecimal sumTodayApplyMoney(Long uid);
|
| | | |
| | | |
| | |
|
| | | }
|