From e55c8b0a92eb9715edd90c31dfd4de51a47b588b Mon Sep 17 00:00:00 2001
From: liuhaonan <31457034@qq.com>
Date: 星期五, 04 十一月 2022 17:40:08 +0800
Subject: [PATCH] changes

---
 dao/src/main/java/com/sandu/ximon/dao/mapper/LedPlayerEntityMapper.java |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/dao/src/main/java/com/sandu/ximon/dao/mapper/LedPlayerEntityMapper.java b/dao/src/main/java/com/sandu/ximon/dao/mapper/LedPlayerEntityMapper.java
index 42b09cb..988987a 100644
--- a/dao/src/main/java/com/sandu/ximon/dao/mapper/LedPlayerEntityMapper.java
+++ b/dao/src/main/java/com/sandu/ximon/dao/mapper/LedPlayerEntityMapper.java
@@ -1,8 +1,11 @@
 package com.sandu.ximon.dao.mapper;
 
+import com.sandu.ximon.dao.bo.LEDNovaGroupListBo;
 import com.sandu.ximon.dao.domain.LedPlayerEntity;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import org.apache.ibatis.annotations.Mapper;
+
+import java.util.List;
 
 /**
  * @Entity com.sandu.ximon.dao.domain.LedPlayerEntity
@@ -11,6 +14,27 @@
 public interface LedPlayerEntityMapper extends BaseMapper<LedPlayerEntity> {
 
     boolean saveLed(LedPlayerEntity ledPlayerEntity);
+
+    /**
+     * 鐢ㄤ簬闄ゅ垪琛ㄥ睍绀轰互澶栫殑(鏂板浜嗗垎缁勬搷浣�  涓轰笉褰卞搷鍏朵粬  鏂板ledListByGroupId)
+     * @param keyword
+     * @param userId
+     * @return
+     */
+    List<LedPlayerEntity> ledPlayerEntityList(String keyword, Long userId);
+
+    /**
+     * 鐢ㄤ簬鍒楄〃灞曠ず
+     * @param keyword
+     * @param userId
+     * @param groupId
+     * @return
+     */
+    List<LedPlayerEntity> ledListByGroupId(String keyword, Long userId,Long groupId);
+
+    List<LedPlayerEntity> ledPlayerEntityListOnBinding(String keyword, Long userid);
+
+    List<LEDNovaGroupListBo> getListByGroupId(Long groupId,Long clientId);
 }
 
 

--
Gitblit v1.9.3