| | |
| | | } |
| | | |
| | | @PostMapping("/update-value") |
| | | public CommonResult<Boolean> updateValue(@RequestBody List<PageParamValueReqVO> reqVOList) { |
| | | log.info("updateValue,reqVOList={}", JSONArray.toJSONString(reqVOList)); |
| | | for(PageParamValueReqVO reqVO : reqVOList) { |
| | | pageParamService.updateValue(reqVO); |
| | | } |
| | | public CommonResult<Boolean> updateValue(@RequestBody PageParamValueReqVO reqVO) { |
| | | log.info("updateValue,reqVO={}", JSONObject.toJSONString(reqVO)); |
| | | pageParamService.updateValue(reqVO); |
| | | return CommonResult.success(true); |
| | | } |
| | | } |