From e05de1586504e51e6b80065103583ff95a587253 Mon Sep 17 00:00:00 2001 From: r-ca Date: Thu, 14 Dec 2023 02:28:51 +0900 Subject: [PATCH] =?UTF-8?q?source:=20WIP,=20=E9=A0=85=E7=9B=AE=E5=90=8D?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/one/nem/lacerta/source/database/entity/Library.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/src/main/java/one/nem/lacerta/source/database/entity/Library.java b/source/src/main/java/one/nem/lacerta/source/database/entity/Library.java index 6220fca1..9eeac989 100644 --- a/source/src/main/java/one/nem/lacerta/source/database/entity/Library.java +++ b/source/src/main/java/one/nem/lacerta/source/database/entity/Library.java @@ -1,5 +1,6 @@ package one.nem.lacerta.source.database.entity; +import androidx.room.ColumnInfo; import androidx.room.Entity; import androidx.room.PrimaryKey; @@ -7,9 +8,12 @@ import androidx.room.PrimaryKey; public class Library { @PrimaryKey + @ColumnInfo(name = "id") public String id; // ドキュメントID + @ColumnInfo(name = "root_path") public String rootPath; // rootのパス + @ColumnInfo(name = "path") public String path; // パス }