1
0

accessrights.jdl: UserRoleAssignments entity*Id required

Merge branch 'jhipster-generated'
This commit is contained in:
Michael Hoennig
2019-05-07 13:08:26 +02:00
22 changed files with 97 additions and 59 deletions

View File

@ -25,10 +25,13 @@ public class UserRoleAssignment implements Serializable {
@SequenceGenerator(name = "sequenceGenerator")
private Long id;
@Column(name = "entity_type_id")
@NotNull
@Size(max = 32)
@Column(name = "entity_type_id", length = 32, nullable = false)
private String entityTypeId;
@Column(name = "entity_object_id")
@NotNull
@Column(name = "entity_object_id", nullable = false)
private Long entityObjectId;
@NotNull