yujian
2020-05-23 28cf328a098334b51a3e9d2d56f983fb8c862211
fanli/src/main/java/com/yeshi/fanli/service/inter/money/TeamDividentsDebtService.java
@@ -1,6 +1,7 @@
package com.yeshi.fanli.service.inter.money;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import com.yeshi.fanli.entity.order.dividents.TeamDividentsDebt;
@@ -37,7 +38,7 @@
    * @return 还剩下的资金
    * @throws TeamDividentsDebtException
    */
   public BigDecimal repayDebtByUid(Long uid, BigDecimal money) throws TeamDividentsDebtException;
   public BigDecimal repayDebtByUid(Long uid,Date maxEstimatePayTime, BigDecimal money) throws TeamDividentsDebtException;
   /**
    * 检索需要偿还的债务
@@ -47,7 +48,7 @@
    * @param count
    * @return
    */
   public List<TeamDividentsDebt> listNeedRepayDebt(Long uid, int page, int count);
   public List<TeamDividentsDebt> listNeedRepayDebt(Long uid,Date maxEstimatePayTime, int page, int count);
   /**
    * 检索需要偿还的债务
@@ -55,7 +56,7 @@
    * @param uid
    * @return
    */
   public long countNeedRepayDebt(Long uid);
   public long countNeedRepayDebt(Long uid,Date maxEstimatePayTime);
   /**
    * 获取总共欠钱金额
@@ -63,6 +64,6 @@
    * @param uid
    * @return
    */
   public BigDecimal getTotalDebtMoney(Long uid);
   public BigDecimal getTotalDebtMoney(Long uid,Date maxEstimatePayTime);
}