admin
2024-01-23 81da61b828e29b7745e1382dfbbaeb685dc083ef
fanli/src/main/java/com/yeshi/fanli/service/inter/hongbao/HongBaoV2SettleTempService.java
@@ -1,28 +1,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);
}
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);
}