| | |
| | | |
| | | @GetMapping("/GetAbnormalData") |
| | | @ApiOperation(value = "体检结果异常数据统计分析") |
| | | @PreAuthorize("@ss.hasPermi('home:page:GetAbnormalData')") |
| | | // @PreAuthorize("@ss.hasPermi('home:page:GetAbnormalData')") |
| | | public List<AbnormalVO> GetAbnormalData(@RequestParam(required = false) String startDate, @RequestParam(required = false) String endDate) { |
| | | List<AbnormalVO> list = new ArrayList<>(); |
| | | List<TjOrderDetail> list1 = detailService.getTjOrderDetailList(startDate,endDate); |
| | |
| | | |
| | | @GetMapping("/getDiseaseList") |
| | | @ApiOperation("根据疾病名称查询相关人员信息接口") |
| | | @PreAuthorize("@ss.hasPermi('home:page:getDiseaseList')") |
| | | // @PreAuthorize("@ss.hasPermi('home:page:getDiseaseList')") |
| | | public AjaxResult getDiseaseList(@ApiParam(value = "疾病名称") @RequestParam String disesseName, |
| | | @ApiParam(value = "开始时间") @RequestParam(required = false) String beginTime, |
| | | @ApiParam(value = "结束时间") @RequestParam(required = false) String endTime) { |