1
luofl
2025-03-10 816de9ecb894d8c4fddb2da8d3464648346a67d9
ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/controller/CustomConfigController.java
@@ -39,6 +39,9 @@
    @Resource
    private ICustomConfigService iCustomConfigService;
    @GetMapping(value = "/{configId}")
    @ApiOperation("获取配置")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "configId", value = "配置键", required = true)})
    public R<CustomConfig> getconfig(@PathVariable String configId)
    {
        LambdaQueryWrapper<CustomConfig> wrapper = Wrappers.lambdaQuery();
@@ -179,6 +182,15 @@
    }
    /**
     * 获取保证金退还文案
     */
    @ApiOperation("获取保证金退还文案")
    @GetMapping("/refund-of-deposit")
    public R<String> getRefundOfDeposit() {
        return R.ok(iCustomConfigService.getRefundOfDeposit());
    }
    /**
     * 保存保证金退还设置
     */
    @ApiOperation(value = "保存保证金退还设置")