admin
2020-05-12 2ec42a5aacea35d2918f0e17f07685cf5b4d25c8
fanli/src/main/java/com/yeshi/fanli/service/inter/money/TeamEincomeRecordService.java
@@ -1,5 +1,6 @@
package com.yeshi.fanli.service.inter.money;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
@@ -25,12 +26,36 @@
    */
   public void addTeamEincomeRecord(TeamEincomeRecord record) throws TeamEincomeRecordException, ParamsException;
   public List<TeamEincomeRecord> listCanRecieveRecord(Date preRecieveTime,Long uid);
   public List<TeamEincomeRecord> listCanRecieveRecord(Date preRecieveTime, Long uid, List<Integer> typeList);
   /**
    * 获取可以结算的用户ID
    * @Title: listCanRecieveUid
    * @Description:
    * @param preRecieveTime
    * @param typeList
    * @return
    * List<Long> 返回类型
    * @throws
    */
   public List<Long> listCanRecieveUid(Date preRecieveTime, List<Integer> typeList,int page,int pageSize);
   
   public long countCanRecieveUid(Date preRecieveTime, List<Integer> typeList);
   
   public TeamEincomeRecord selectByPrimaryKeyForUpdate(Long id);
   public void setRecieved(Long id);
   /**
    * 获取预估分红
    * @Title: getEstimateDividents
    * @Description:
    * @param preGetTime
    * @return
    * BigDecimal 返回类型
    * @throws
    */
   public BigDecimal getEstimateDividents(Date preGetTime, Long uid);
}