子/親をDocumentEntity単体で管理するように

This commit is contained in:
r-ca 2024-01-27 17:04:50 +09:00
parent a187ef3523
commit 217b152c47
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -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; // 結合されたドキュメントの親かどうか
}