| | |
| | | */ |
| | | @ApiOperation(value = "保存保证金退还设置") |
| | | @PostMapping("/save-refund-of-deposit") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "refundOfDeposit", value = "保证金退还文案", required = true)}) |
| | | public R<?> saveRefundOfDeposit(@RequestBody RefundOfDepositVO refundOfDepositVO) { |
| | | iCustomConfigService.saveRefundOfDeposit(refundOfDepositVO.getRefundOfDeposit()); |
| | | return R.ok(); |
| | |
| | | package com.ruoyi.system.domain.vo; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @ApiModel(value = "保证金退还设置视图对象") |
| | | public class RefundOfDepositVO { |
| | | @ApiModelProperty(value = "保证金退还文案") |
| | | private String refundOfDeposit; |
| | | } |