| | |
| | | @RestController |
| | | @RequestMapping("pageParam") |
| | | @Api(tags = "系统设置-系统配置-页面参数") |
| | | public class PageParamController { |
| | | public class PageParamController extends BaseController{ |
| | | |
| | | @Autowired |
| | | private PageParamService service; |
| | |
| | | return new Response<List<PageParam>>().set(1,paramList); |
| | | } |
| | | |
| | | @PutMapping("list") |
| | | @PostMapping("updateList") |
| | | @ApiOperation(value = "添加或者移除参数配置") |
| | | public Response updateList(@RequestParam int operationFlag,@RequestBody List<PageParam> pageParamList){ |
| | | service.updateList(pageParamList,operationFlag); |