added jpa entity generator

master
Niclas Thobaben 2021-09-18 14:13:58 +02:00
parent 9f16a177d9
commit 0fccf0d5c7
1 changed files with 2 additions and 0 deletions

View File

@ -77,6 +77,8 @@ function mapCollection(type) {
return {
name: `List<${baseType}>`,
baseType,
isEnum: type.isEnum,
fullQualifiedName: type.fullQualifiedName,
imports: [ ...(type.imports || []), 'java.util.List' ],
isCollection: true
}