admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/order/OrderSearchIndexMapper.java
@@ -1,45 +1,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);
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);
}