From 83d5bdd49d2097443f27266cbc4d8ba2dda9693b Mon Sep 17 00:00:00 2001 From: liux <963924687@qq.com> Date: Thu, 13 Nov 2025 23:22:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=97=B6=E9=97=B4=E6=88=B3?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../screening/controller/HardwareScreenController.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/screening/controller/HardwareScreenController.java b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/screening/controller/HardwareScreenController.java index 425ad40..38f2329 100644 --- a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/screening/controller/HardwareScreenController.java +++ b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/screening/controller/HardwareScreenController.java @@ -74,6 +74,13 @@ public class HardwareScreenController extends BaseController { return success(hardwareScreenService.getMorningCheckInfo(morningCheckVo)); } + @ApiOperation(value = "获取健康晨检详细信息") + @GetMapping(value = "/getTimeStamp") + public AjaxResult getTimeStamp() { + return success(System.currentTimeMillis()); + } + + /** * 获取AI巡检记录 */