| | |
| | | import com.ruoyi.system.domain.vo.CustomConfigVO; |
| | | import com.ruoyi.system.domain.vo.WishSettingVO; |
| | | import com.ruoyi.system.service.ICustomConfigService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.validation.Valid; |
| | | import org.springframework.validation.annotation.Validated; |
| | |
| | | iCustomConfigService.saveWishDescription(vo); |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * 保存保证金退还设置 |
| | | */ |
| | | @ApiOperation(value = "保存保证金退还设置") |
| | | @PostMapping("/save-refund-of-deposit") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "refundOfDeposit", value = "保证金退还文案", required = true)}) |
| | | public R<?> saveRefundOfDeposit( |
| | | @RequestParam(value = "refundOfDeposit") String refundOfDeposit) { |
| | | iCustomConfigService.saveRefundOfDeposit(refundOfDeposit); |
| | | return R.ok(); |
| | | } |
| | | } |