You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/backend-application-default/src/main/java/io/zenwave360/sdk/plugins/BackendApplicationDefaultPlugin.java
Copy file name to clipboardExpand all lines: plugins/backend-application-kotlin/src/main/java/io/zenwave360/sdk/plugins/BackendApplicationKotlinHelpers.java
Copy file name to clipboardExpand all lines: plugins/backend-application-kotlin/src/main/resources/io/zenwave360/sdk/plugins/BackendApplicationDefaultGenerator/src/main/kotlin/core/domain/jpa/Entity.kt.hbs
Copy file name to clipboardExpand all lines: plugins/backend-application-kotlin/src/main/resources/io/zenwave360/sdk/plugins/BackendApplicationDefaultGenerator/src/main/kotlin/core/domain/vo/Entity.kt.hbs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ data class {{entity.className}}(
14
14
{{#eachfield.validationsas |validation|~}}
15
15
// @{{validation.name}}("{{validation.value}}")
16
16
{{~/each}}
17
-
var {{field.name}}: {{{fieldTypefield}}}{{#unless@last}},{{/unless}}
17
+
var {{field.name}}: {{{fieldTypefield}}}?{{#unless@last}},{{/unless}}
18
18
{{/each}}
19
19
) {{addExtendsentity}} : Serializable {
20
20
@@ -30,4 +30,4 @@ data class {{entity.className}}(
Copy file name to clipboardExpand all lines: plugins/backend-application-kotlin/src/main/resources/io/zenwave360/sdk/plugins/BackendApplicationDefaultGenerator/src/main/kotlin/core/implementation/imperative/ServiceImpl.kt.hbs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ import java.util.Optional
35
35
*/
36
36
@Service
37
37
@Transactional(readOnly = true)
38
-
class {{service.name}}Impl(
38
+
open class {{service.name}}Impl(
39
39
{{#eachentitiesas |entity|}}
40
40
{{~#unless (skipEntityRepositorythis)}}
41
41
private val {{entity.instanceName}}Repository: {{entity.className}}Repository{{#unless@last}},{{/unless}}
Copy file name to clipboardExpand all lines: plugins/backend-application-kotlin/src/main/resources/io/zenwave360/sdk/plugins/BackendApplicationDefaultGenerator/src/main/kotlin/core/implementation/mappers/ServiceMapper.kt.hbs
0 commit comments