xiaoyong931011
2022-11-04 289e1db5778e11c8559ac72075e3224f5d78974a
src/main/java/cc/mrbird/febs/dapp/service/impl/DappWalletServiceImpl.java
@@ -1131,11 +1131,10 @@
        if(BigDecimal.ZERO.compareTo(totalProfit)>=0){
            return BigDecimal.ZERO;
        }
        BigDecimal multiply = totalProfit.multiply(new BigDecimal(0.05));
        DappAccountMoneyChangeEntity dappAccountMoneyChangeEntity = new DappAccountMoneyChangeEntity(65L,
                multiply.negate(), "系统", 9,id);
                totalProfit, "系统", 9,id);
        dappAccountMoneyChangeDao.insert(dappAccountMoneyChangeEntity);
        return multiply;
        return totalProfit;
    }
    @Override
@@ -1155,8 +1154,12 @@
    public static void main(String[] args) {
        String num = StrUtil.subSuf("01234",1);
        System.out.print(num);
        DateTime date = DateUtil.date();
        DateTime endTime = DateUtil.parseTimeToday("09:08:03");
        if(DateUtil.compare(date,endTime)>=0){
            //
            System.out.print(endTime);
        }
    }
    private String isIdentity(List<String> refererIds,String levelCode){