| | |
| | | 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);
|
| | |
|
| | | }
|
| | | 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); |
| | | |
| | | } |