KKSU
2024-01-31 17d93633ebc32837f48a533d0f90113badca8957
src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java
@@ -70,6 +70,13 @@
        if (chargeAmountDic != null) {
            adminAgentAmountDto.setChargeAmount(chargeAmountDic.getValue());
        }
        DataDictionaryCustom minAmountDic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode(
                DataDictionaryEnum.MIN_AMOUNT_IS_MEMBER.getType(),
                DataDictionaryEnum.MIN_AMOUNT_IS_MEMBER.getCode());
        if (minAmountDic != null) {
            adminAgentAmountDto.setMinAmount(minAmountDic.getValue());
        }
        model.addAttribute("agentAmountSet", adminAgentAmountDto);
        return FebsUtil.view("modules/system/agentAmountSet");
    }