1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package com.yeshi.fanli.service.inter.hongbao;
|
| import java.util.List;
|
| /**
| * 红包ID与账户明细的资金对应
| *
| * @author Administrator
| *
| */
| public interface AccountDetailsHongBaoMapService {
| /**
| * 保存红包与资金明细的关系
| *
| * @param hongBaoId
| * @param accountDetailsId
| */
| public void saveAccountDetailsHongBaoMap(Long hongBaoId, Long accountDetailsId);
|
| /**
| * 保存红包与资金明细的关系
| *
| * @param hongBaoIdList
| * @param accountDetailsId
| */
| public void saveAccountDetailsHongBaoMap(List<Long> hongBaoIdList, Long accountDetailsId);
|
| }
|
|