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("操作成功"); }