fuliqi
2024-07-31 25ccb451cb638968fe5d457739a3328308fd1bc3
ycl-server/src/main/java/com/ycl/platform/service/impl/CalculateMoneyRuleServiceImpl.java
@@ -142,4 +142,11 @@
                .collect(Collectors.toList());
        return Result.ok().data(vos);
    }
    @Override
    public List<CalculateMoneyRule> selectMoneyRules(Integer contractId) {
        return new LambdaQueryChainWrapper<>(baseMapper)
                .eq(CalculateMoneyRule::getContractId, contractId)
                .list();
    }
}