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;
|
| import com.yeshi.fanli.entity.order.HongBaoV2SettleTemp;
|
| public interface HongBaoV2SettleTempService {
|
| /**
| * 添加
| * @param hongBaoList
| * @param taskKey
| * @throws Exception
| */
| public void addTemp(List<Long> hongBaoIdList, String taskKey);
|
|
| /**
| * 根据key检索
| * @param key
| * @return
| */
| public List<HongBaoV2SettleTemp> listByKey(String key);
|
|
| public long countByKey(String key);
|
| }
|
|