fix id to string

This commit is contained in:
Ken Stevens 2022-12-04 21:44:26 -05:00
parent cba962546e
commit 6e276ffc31
1 changed files with 5 additions and 0 deletions

View File

@ -64,4 +64,9 @@ public class JpaPid extends BaseResourcePersistentId<Long> {
public Long getId() {
return myId;
}
@Override
public String toString() {
return myId.toString();
}
}