From 9297cc4820d91a655cc56501ecaf013a4b9b08a3 Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期日, 29 九月 2024 14:05:35 +0800 Subject: [PATCH] 设备统计 --- jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/devmanage/DeviceController.java | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/devmanage/DeviceController.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/devmanage/DeviceController.java index 9e70728..054b4a7 100644 --- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/devmanage/DeviceController.java +++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/devmanage/DeviceController.java @@ -1,5 +1,9 @@ package cn.lihu.jh.module.ecg.controller.admin.devmanage; +import cn.lihu.jh.module.ecg.controller.admin.jobrecord.vo.JobRecordPageReqVO; +import cn.lihu.jh.module.ecg.controller.admin.jobrecord.vo.JobRecordStatisticVO; +import cn.lihu.jh.module.ecg.dal.dataobject.devmanage.DeviceStatisticDO; +import cn.lihu.jh.module.ecg.dal.dataobject.jobrecord.JobRecordStatisticDO; import org.springframework.web.bind.annotation.*; import org.springframework.validation.annotation.Validated; import org.springframework.security.access.prepost.PreAuthorize; @@ -112,4 +116,12 @@ BeanUtils.toBean(list, DeviceRespVO.class)); } -} \ No newline at end of file + @GetMapping("/dev-statistic") + @Operation(summary = "璁惧缁熻") + @PreAuthorize("@ss.hasPermission('ecg:device:statistic')") + public CommonResult<List<DeviceStatisticVO>> getDeviceStatistic(@Valid DevicePageReqVO pageReqVO) { + List<DeviceStatisticDO> statisticDOList = deviceService.getDeviceStatistic(pageReqVO); + return success(BeanUtils.toBean(statisticDOList, DeviceStatisticVO.class)); + } + +} -- Gitblit v1.9.3