| | |
| | | import com.ruoyi.system.service.TInfoConfigService; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | |
| | | @ApiOperation(value = "修改",tags = "后台-系统设置-关于我们,其他设置") |
| | | |
| | | @PostMapping("/updateInfoConfig") |
| | | public R<Boolean> updateInfoConfig(TInfoConfig tInfoConfig){ |
| | | public R<Boolean> updateInfoConfig(@RequestBody TInfoConfig tInfoConfig){ |
| | | return R.ok(tInfoConfigService.updateById(tInfoConfig)); |
| | | } |
| | | |