yujian
2019-09-10 65460a2dc7c69d8c0e031ec4c89e25d47e5173f2
fanli/src/main/java/com/yeshi/fanli/service/inter/hongbao/ThreeSaleExtraInfoSerivce.java
@@ -1,7 +1,5 @@
package com.yeshi.fanli.service.inter.hongbao;
import java.util.List;
import com.yeshi.fanli.entity.bus.user.ThreeSaleExtraInfo;
public interface ThreeSaleExtraInfoSerivce {
@@ -23,7 +21,7 @@
    * @param workerId
    * @return
    */
   public List<ThreeSaleExtraInfo> listbyBossIdAndWorkerId(Long bossId, Long workerId);
   public ThreeSaleExtraInfo getbyBossIdAndWorkerId(Long bossId, Long workerId);
   /**
    * 根据用户id、被邀请id删除
@@ -32,4 +30,20 @@
    * @return
    */
   public int deleteByBossIdAndWorkerId(Long bossId, Long workerId);
   /**
    * 是否已提醒boss
    * @param bossId
    * @param workerId
    * @return
    */
   public boolean isRemindBoss(Long bossId, Long workerId);
   /**
    * 是否已提醒下级
    * @param bossId
    * @param workerId
    * @return
    */
   public boolean isRemindWorker(Long bossId, Long workerId);
}