From 217b152c475f186db6b02046ea73541e7d76a415 Mon Sep 17 00:00:00 2001 From: r-ca Date: Sat, 27 Jan 2024 17:04:50 +0900 Subject: [PATCH] =?UTF-8?q?=E5=AD=90/=E8=A6=AA=E3=82=92DocumentEntity?= =?UTF-8?q?=E5=8D=98=E4=BD=93=E3=81=A7=E7=AE=A1=E7=90=86=E3=81=99=E3=82=8B?= =?UTF-8?q?=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nem/lacerta/source/database/entity/DocumentEntity.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source/src/main/java/one/nem/lacerta/source/database/entity/DocumentEntity.java b/source/src/main/java/one/nem/lacerta/source/database/entity/DocumentEntity.java index edd7a2d1..88c77281 100644 --- a/source/src/main/java/one/nem/lacerta/source/database/entity/DocumentEntity.java +++ b/source/src/main/java/one/nem/lacerta/source/database/entity/DocumentEntity.java @@ -37,6 +37,9 @@ public class DocumentEntity { @ColumnInfo(name = "parent_id") public String parentId; // 親フォルダID - @ColumnInfo(name = "is_combined") - public boolean isCombined; // 結合されたドキュメントかどうか + @ColumnInfo(name = "is_combine_child") + public boolean isCombineChild; // 結合されたドキュメントの子かどうか + + @ColumnInfo(name = "is_combine_parent") + public boolean isCombineParent; // 結合されたドキュメントの親かどうか }