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