| | |
| | | String id = kv.get("id").toString(); |
| | | information.setDepartmentid(id); |
| | | } |
| | | arg.test01(arg.url + "/information/save", information); |
| | | //arg.test01(arg.url + "/information/save", information); |
| | | return R.status(informationService.save(information)); |
| | | } |
| | | |
| | |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 查询培训单位信息(可以报名) |
| | | */ |
| | | @GetMapping("/security-page") |
| | | @ApiOperationSupport(order = 3) |
| | | @ApiOperation(value = "分页", notes = "传入information") |
| | | public R<IPage<InformationVO>> securityPage(InformationVO information, Query query) { |
| | | IPage<InformationVO> pages = informationService.securityPage(Condition.getPage(query), information); |
| | | return R.data(pages); |
| | | } |
| | | |
| | | } |