classDiagram
UserEntity "1" --> "" PostEntity : posts
UserEntity "1" --> "" CommentEntity : comments
PostEntity "1" --> "*" CommentEntity : comments
class UserEntity {
+Long id
+String name
+String email
+String password
+LocalDateTime date
+List~PostEntity~ posts
+List~CommentEntity~ comments
}
class PostEntity {
+Long id
+String title
+String content
+LocalDateTime date
+UserEntity userAuthor
+List~CommentEntity~ comments
}
class CommentEntity {
+Long id
+String content
+LocalDateTime date
+UserEntity userAuthor
+PostEntity post
}
-
Notifications
You must be signed in to change notification settings - Fork 0
Derek-dev-777/UserPostAPI
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Practicing my spring boot knowledges, my first API builded by myself!
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published