admin
2020-04-15 ee5c8055b1c0dd7c67a9025a76b10bd287c93d9a
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);
 
}