🤖

PlantUMLでドメインモデル図を書く

2024/01/21に公開

エンティティの定義

' エンティティ
entity hoge
entity foo
' プロパティ
hoge:id
hoge:name
hoge:value
foo:id
foo:name
foo:value

もしくは

entity hoge {
 id
 name
 value
}
entity foo {
 id
 name
 value
}

リレーション

hoge o--"1" foo
hoge "1"--"n" foo

インポートもできる

!include ファイル名

まとめ

エンティティ単位でファイルまとめ区切ってまとめたものを作れそう

Discussion