| | |
| | | return R.data(list); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 导入单位信息 |
| | | */ |
| | |
| | | ExcelUtil.export(response, "保安员统计数据" + DateUtil.time(), "保安员统计数据表", list, ExportInformationSecurityStatistics.class); |
| | | } |
| | | |
| | | /** |
| | | * 保安员详情 |
| | | */ |
| | | @PostMapping("/selectUIn") |
| | | public R<IPage> selectUIn(String deptid, String name, String hold, String photo, String examinationtype, String dispatch, String soil, Query query) { |
| | | IPage list = informationService.selectUIn(Condition.getPage(query), deptid, name, hold, photo, examinationtype, dispatch, soil); |
| | | return R.data(list); |
| | | } |
| | | |
| | | /** |
| | | * 查询学历统计信息 |
| | | * @param deptid 部门id |
| | | * @param jurisdiction 辖区 |
| | | * @return |
| | | */ |
| | | @PostMapping("/getEducationStatistics") |
| | | public R getEducationStatistics(String deptid, String jurisdiction) { |
| | | return R.data(informationService.getEducationStatistics(deptid, jurisdiction)); |
| | | } |
| | | |
| | | } |