From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期一, 09 六月 2025 11:54:00 +0800
Subject: [PATCH] 6.9新增登录失败冻结逻辑

---
 springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/bracelet/CommunityBraceletService.java |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/bracelet/CommunityBraceletService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/bracelet/CommunityBraceletService.java
index 0a38ed5..5a15a91 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/bracelet/CommunityBraceletService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/bracelet/CommunityBraceletService.java
@@ -101,4 +101,33 @@
      */
     @GetMapping("/braceletApi/conductorList")
     R conductorList(@RequestParam("communityId") String communityId);
+
+
+    /******************************************************************************************************************************
+     *
+     *                                              大屏居家养老
+     *
+     *****************************************************************************************************************************/
+    /**
+     * 手环人数
+     * @return
+     */
+    @GetMapping("/braceletApi/getUserNum")
+    public R getUserNum(@RequestParam("communityId") String communityId);
+
+    /**
+     * 手环定位数据
+     */
+    @GetMapping("/braceletApi/getUserList")
+    public R  getUserList(@RequestParam("communityId") String communityId);
+
+    /**
+     * 获取手环预警次数
+     * @return
+     */
+    @GetMapping("/braceletApi/getWarningNum")
+    public R getWarningNum(@RequestParam("communityId") String communityId,
+                           @RequestParam(value = "disposeType",required = false) String disposeType);
+
+
 }

--
Gitblit v1.7.1