Skip to content

Derek-dev-777/UserPostAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UserPostAPI

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
}
Loading

About

Practicing my spring boot knowledges, my first API builded by myself!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages