From 49f4b178d05c69f7da7b2200f394ece296766bdb Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期二, 25 二月 2025 18:03:45 +0800
Subject: [PATCH] fix 提醒样式处理

---
 app/src/main/java/com/example/firstapp/database/dao/KeywordDao.kt |   36 +++++++++++++++++++++++-------------
 1 files changed, 23 insertions(+), 13 deletions(-)

diff --git a/app/src/main/java/com/example/firstapp/database/dao/KeywordDao.kt b/app/src/main/java/com/example/firstapp/database/dao/KeywordDao.kt
index f4011d5..81a54e1 100644
--- a/app/src/main/java/com/example/firstapp/database/dao/KeywordDao.kt
+++ b/app/src/main/java/com/example/firstapp/database/dao/KeywordDao.kt
@@ -8,20 +8,30 @@
 import com.example.firstapp.database.entity.KeywordConfig
 import com.example.firstapp.database.entity.KeywordEntity
 
-@Dao
-interface KeywordDao {
-    @Query("SELECT * FROM keywords")
-     fun getAllKeywords(): List<KeywordEntity>
-
+//@Dao
+//interface KeywordDao {
+//    @Query("SELECT * FROM keywords")
+//     fun getAllKeywords(): List<KeywordEntity>
+//
 //    @Insert(onConflict = OnConflictStrategy.REPLACE)
 //    suspend fun insertAll(keywords: List<KeywordEntity>)
 //
-//    @Query("DELETE FROM keywords")
-//    suspend fun deleteAll()
 //
-//    @Update
-//    suspend fun update(keyword: KeywordEntity)
-//
-//    @Query("SELECT * FROM keywords WHERE isEnabled = 1")
-//     fun getEnabledKeywords(): List<KeywordConfig>
-}
+////
+////    @Query("DELETE FROM keywords")
+////    suspend fun deleteAll()
+////
+////    @Update
+////    suspend fun update(keyword: KeywordEntity)
+////
+////    @Query("SELECT * FROM keywords WHERE isEnabled = 1")
+////     fun getEnabledKeywords(): List<KeywordConfig>
+//}
+@Dao
+interface KeywordDao {
+    @Insert(onConflict = OnConflictStrategy.REPLACE)
+     fun insertAll(keywords: List<KeywordEntity>)
+
+    @Query("SELECT * FROM keywords")
+     fun getAllKeywords(): List<KeywordEntity>
+}
\ No newline at end of file

--
Gitblit v1.9.3