|
|
@ -481,8 +481,8 @@ public class ProfitDistributionServiceImpl implements ProfitDistributionService
|
|
|
|
// 第一轮归还劣后级LP本金和银行利息
|
|
|
|
// 第一轮归还劣后级LP本金和银行利息
|
|
|
|
profitDistribution.setRoundSubordinatedLp(subordinatedLp);
|
|
|
|
profitDistribution.setRoundSubordinatedLp(subordinatedLp);
|
|
|
|
profitDistribution.setRoundOwnFunds(rightOwnFunds);
|
|
|
|
profitDistribution.setRoundOwnFunds(rightOwnFunds);
|
|
|
|
profitDistribution.setRoundBankLoan(rightBankLoan);
|
|
|
|
profitDistribution.setRoundBankLoan(rightBankLoan); // - 优先级 自有 劣后级
|
|
|
|
residualIncome = residualIncome.subtract(subordinatedLp).subtract(rightBankLoan).subtract(rightOwnFunds); //剩余收益
|
|
|
|
residualIncome = residualIncome.subtract(subordinatedLp).subtract(rightBankLoan); //剩余收益
|
|
|
|
//2.剩余收益分配比例为,自有资金25%,优先级LP 30%,劣后级LP 45%
|
|
|
|
//2.剩余收益分配比例为,自有资金25%,优先级LP 30%,劣后级LP 45%
|
|
|
|
BigDecimal twoRightOwnFunds = residualIncome.multiply(BigDecimal.valueOf(0.25)).setScale(2, RoundingMode.HALF_UP);//剩余自有资金
|
|
|
|
BigDecimal twoRightOwnFunds = residualIncome.multiply(BigDecimal.valueOf(0.25)).setScale(2, RoundingMode.HALF_UP);//剩余自有资金
|
|
|
|
BigDecimal twoRightFundraisingAmount = residualIncome.multiply(BigDecimal.valueOf(0.3)).setScale(2, RoundingMode.HALF_UP);//剩余自有资金
|
|
|
|
BigDecimal twoRightFundraisingAmount = residualIncome.multiply(BigDecimal.valueOf(0.3)).setScale(2, RoundingMode.HALF_UP);//剩余自有资金
|
|
|
|