| | |
| | | package com.yeshi.fanli.service.inter.redpack;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.redpack.RedPackGiveRecord;
|
| | | import com.yeshi.fanli.exception.redpack.RedPackGiveRecordException;
|
| | | import com.yeshi.fanli.vo.redpack.RedPackGiveVO;
|
| | |
|
| | | public interface RedPackGiveRecordService {
|
| | |
|
| | |
| | | public RedPackGiveRecord receiveFriendsGive(Long uid, Long id) throws RedPackGiveRecordException;
|
| | |
|
| | |
|
| | | /**
|
| | | * 赠送退回
|
| | | * @param id
|
| | | * @throws Exception
|
| | | */
|
| | | public void overdueByPrimaryKey(Long id) throws Exception;
|
| | |
|
| | | /**
|
| | | * 查询赠送记录
|
| | | * @param page
|
| | | * @param pageSzie
|
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | public List<RedPackGiveVO> getGiveList(int page, int pageSzie, Long uid);
|
| | |
|
| | | public long countGiveList(Long uid);
|
| | |
|
| | |
|
| | | }
|