Skip to content

Commit

Permalink
add with builtInEntity
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Nov 2, 2023
1 parent 2526286 commit 71e3be2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ relationship OneToMany {
BankAccount{operation} to Operation{bankAccount(name)}
}
relationship ManyToOne {
BankAccount{user(login)} to User
BankAccount{user(login)} to User with builtInEntity
}
relationship ManyToMany {
Operation{label(label)} to Label{operation}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ relationship OneToMany {
BankAccount{operation} to Operation{bankAccount(name)}
}
relationship ManyToOne {
BankAccount{user(login)} to User
BankAccount{user(login)} to User with builtInEntity
}
relationship ManyToMany {
Operation{label(label)} to Label{operation}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,16 +132,16 @@ entity Region {

relationship OneToOne {
Department{location} to Location,
Employee{user(login)} to User
// Employee{user(login)} to User with jpaDerivedIdentifier
Employee{user(login)} to User with builtInEntity
// Employee{user(login)} to User with builtInEntity with jpaDerivedIdentifier
// Please see: https://github.com/jhipster/generator-jhipster-micronaut/issues/219
}

relationship OneToMany {
BankAccount{operation} to Operation{bankAccount(name)}
}
relationship ManyToOne {
BankAccount{user(login)} to User
BankAccount{user(login)} to User with builtInEntity
}
relationship ManyToMany {
Operation{theLabel(labelName)} to TheLabel{operation}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ relationship OneToMany {
BankAccount{operation} to Operation{bankAccount(name)}
}
relationship ManyToOne {
BankAccount{user(login)} to User
BankAccount{user(login)} to User with builtInEntity
}
relationship ManyToMany {
Operation{label(label)} to Label{operation}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ relationship OneToMany {
BankAccount{operation} to Operation{bankAccount(name)}
}
relationship ManyToOne {
BankAccount{user(login)} to User
BankAccount{user(login)} to User with builtInEntity
}
relationship ManyToMany {
Operation{label(label)} to Label{operation}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ relationship OneToMany {
BankAccount{operation} to Operation{bankAccount(name) required}
}
relationship ManyToOne {
BankAccount{user(login)} to User
BankAccount{user(login)} to User with builtInEntity
}
relationship ManyToMany {
Operation{label(label)} to Label{operation required}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ relationship OneToMany {
BankAccount{operation} to Operation{bankAccount(name)}
}
relationship ManyToOne {
BankAccount{user(login)} to User
BankAccount{user(login)} to User with builtInEntity
}
relationship ManyToMany {
Operation{label(label)} to Label{operation}
Expand Down

0 comments on commit 71e3be2

Please sign in to comment.