yujian
2020-05-06 a338d86bcaf17f2ba9296a601cdbda4d3e9baae0
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.yeshi.fanli.dao.mybatis.order;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.entity.order.ESOrder;
 
public interface OrderSearchIndexMapper {
 
    /**
     * 
     * @Title: listByHBIds
     * @Description: 根据主hongbaoId检索
     * @param hbIdList
     * @return 
     * List<ESOrder> 返回类型
     * @throws
     */
    List<ESOrder> listByHBIds(@Param("hbIdList") List<Long> hbIdList);
 
    /**
     * 
     * @Title: listHBId
     * @Description: 检索需要新增的hongBaoId
     * @param start
     * @param count
     * @return 
     * List<Long> 返回类型
     * @throws
     */
    List<Long> listHBId(@Param("start") long start, @Param("count") int count);
 
    /**
     * 根据hongBaoId删除
     * @Title: deleteByHBIds
     * @Description: 
     * @param hbIdList
     * @return 
     * int 返回类型
     * @throws
     */
    int deleteByHBIds(@Param("hbIdList") List<Long> hbIdList);
 
}