Created
January 17, 2017 10:13
-
-
Save silentsudo/b6145818ca0008fa43ede5d7beac7907 to your computer and use it in GitHub Desktop.
Library jHipster JDL description
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
entity Author { | |
name String | |
details String | |
} | |
entity Book { | |
title String | |
description String | |
publication String | |
} | |
relationship OneToMany { | |
Author{book} to Book{author} | |
} | |
skipClient for Author | |
skipClient for Book | |
service all with serviceImpl | |
paginate all with infinite-scroll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment