KKSU
2024-01-08 2b30804879b204db142999fa56710d5f593efd66
src/main/java/cc/mrbird/febs/mall/controller/AdminSystemController.java
@@ -118,6 +118,13 @@
        chargeAmountDic.setValue(adminAgentAmountDto.getChargeAmount());
        dataDictionaryCustomMapper.updateById(chargeAmountDic);
        DataDictionaryCustom minAmountDic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode(
                DataDictionaryEnum.MIN_AMOUNT_IS_MEMBER.getType(),
                DataDictionaryEnum.MIN_AMOUNT_IS_MEMBER.getCode());
        minAmountDic.setValue(adminAgentAmountDto.getMinAmount());
        dataDictionaryCustomMapper.updateById(minAmountDic);
        return new FebsResponse().success().message("操作成功");
    }