src/main/java/cc/mrbird/febs/dapp/service/impl/DappMemberServiceImpl.java
@@ -401,6 +401,8 @@ objectQueryWrapper.eq("state",DappSystemProfit.STATE_IN); //实际投资人数 Integer selectCount = dappSystemProfitDao.selectCount(objectQueryWrapper); BigDecimal runPercent = new BigDecimal(selectCount).divide(new BigDecimal(memberCount), 2, BigDecimal.ROUND_DOWN).multiply(new BigDecimal(100)); apiRunListInfoVo.setRunPercent(runPercent); //实际投资人数小于出局条件人数 //符合则出局 实际投资人数等于出局条件人数 DappSystemProfit dappSystemProfitIn = dappSystemProfitDao.selectSystemProfitInByState(DappSystemProfit.STATE_IN);