From 4bdb1a489c7cbc14ab84ee9085c94d3cd2effc87 Mon Sep 17 00:00:00 2001 From: r-ca Date: Sat, 27 Jan 2024 17:20:50 +0900 Subject: [PATCH] =?UTF-8?q?=E3=81=99=E3=81=B9=E3=81=A6=E3=81=AE=E3=82=B3?= =?UTF-8?q?=E3=83=B3=E3=82=B9=E3=83=88=E3=83=A9=E3=82=AF=E3=82=BF=E3=81=A7?= =?UTF-8?q?=E6=97=A2=E5=AE=9A=E5=80=A4(false)=E3=82=92=E5=85=A5=E3=82=8C?= =?UTF-8?q?=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/one/nem/lacerta/model/document/DocumentMeta.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/model/src/main/java/one/nem/lacerta/model/document/DocumentMeta.java b/model/src/main/java/one/nem/lacerta/model/document/DocumentMeta.java index fb396801..ffe54b35 100644 --- a/model/src/main/java/one/nem/lacerta/model/document/DocumentMeta.java +++ b/model/src/main/java/one/nem/lacerta/model/document/DocumentMeta.java @@ -60,6 +60,8 @@ public class DocumentMeta { // TODO-rca: JavaDoc対応 this.id = UUID.randomUUID().toString(); this.title = title; this.author = author; + this.isCombineChild = false; + this.isCombineParent = false; } public DocumentMeta(String id, String title, Date updatedAt, Date createdAt, String author) { @@ -68,6 +70,8 @@ public class DocumentMeta { // TODO-rca: JavaDoc対応 this.updatedAt = updatedAt; this.createdAt = createdAt; this.author = author; + this.isCombineChild = false; + this.isCombineParent = false; } public DocumentMeta(String id, String title, Date updatedAt, Date createdAt, String parentId, String author) { @@ -77,6 +81,8 @@ public class DocumentMeta { // TODO-rca: JavaDoc対応 this.createdAt = createdAt; this.parentId = parentId; this.author = author; + this.isCombineChild = false; + this.isCombineParent = false; } public DocumentMeta(String id, String title, Date updatedAt, Date createdAt, String parentId, String author, boolean isCombineChild, boolean isCombineParent) {