diff --git a/src/.gradle/5.4.1/executionHistory/executionHistory.lock b/src/.gradle/5.4.1/executionHistory/executionHistory.lock
index 41eb9fd..539cb4c 100644
Binary files a/src/.gradle/5.4.1/executionHistory/executionHistory.lock and b/src/.gradle/5.4.1/executionHistory/executionHistory.lock differ
diff --git a/src/.gradle/5.4.1/fileHashes/fileHashes.lock b/src/.gradle/5.4.1/fileHashes/fileHashes.lock
index cd85a9b..87d8af9 100644
Binary files a/src/.gradle/5.4.1/fileHashes/fileHashes.lock and b/src/.gradle/5.4.1/fileHashes/fileHashes.lock differ
diff --git a/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock
index 9d3f598..551f969 100644
Binary files a/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ
diff --git a/src/.idea/workspace.xml b/src/.idea/workspace.xml
index 568089d..0f59503 100644
--- a/src/.idea/workspace.xml
+++ b/src/.idea/workspace.xml
@@ -6,7 +6,14 @@
-
+
+
+
+
+
+
+
+
@@ -29,7 +36,7 @@
-
+
@@ -41,8 +48,8 @@
-
-
+
+
@@ -50,7 +57,7 @@
-
+
@@ -71,8 +78,8 @@
-
-
+
+
@@ -80,7 +87,7 @@
-
+
@@ -107,6 +114,9 @@
+
+
+
-
-
-
+
+
+
@@ -135,6 +146,8 @@
+
+
@@ -228,8 +241,6 @@
-
-
@@ -239,7 +250,7 @@
-
+
@@ -392,7 +403,7 @@
-
+
@@ -410,7 +421,7 @@
-
+
@@ -554,16 +565,33 @@
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
-
+
@@ -580,27 +608,10 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
diff --git a/src/app/src/main/java/net/micode/notes/data/Notes.java b/src/app/src/main/java/net/micode/notes/data/Notes.java
index 6f9a420..923f395 100644
--- a/src/app/src/main/java/net/micode/notes/data/Notes.java
+++ b/src/app/src/main/java/net/micode/notes/data/Notes.java
@@ -66,7 +66,7 @@ public class Notes {
/**
- *该类声明了一系列关于便签的final变量,没有定义方法
+ *该类声明了一系列关于便签的final变量,用于再数据库中标识便签,没有定义方法
*/
public interface NoteColumns {
/**
diff --git a/src/app/src/main/java/net/micode/notes/data/NotesDatabaseHelper.java b/src/app/src/main/java/net/micode/notes/data/NotesDatabaseHelper.java
index ffe5d57..0b3b80a 100644
--- a/src/app/src/main/java/net/micode/notes/data/NotesDatabaseHelper.java
+++ b/src/app/src/main/java/net/micode/notes/data/NotesDatabaseHelper.java
@@ -42,6 +42,7 @@ public class NotesDatabaseHelper extends SQLiteOpenHelper {
private static NotesDatabaseHelper mInstance;
+ //创建SQL便签表表项,String类型
private static final String CREATE_NOTE_TABLE_SQL =
"CREATE TABLE " + TABLE.NOTE + "(" +
NoteColumns.ID + " INTEGER PRIMARY KEY," +