add omdb entities for frontend
This commit is contained in:
@@ -22,7 +22,7 @@ ENTITY_PKG=de.infinimotion.model.bean
|
|||||||
ProjectVariable.MAVEN_ARTIFACT_ID=model
|
ProjectVariable.MAVEN_ARTIFACT_ID=model
|
||||||
ProjectVariable.MAVEN_GROUP_ID=de.infinimotion
|
ProjectVariable.MAVEN_GROUP_ID=de.infinimotion
|
||||||
ProjectVariable.PROJECT_NAME=infinimodel
|
ProjectVariable.PROJECT_NAME=infinimodel
|
||||||
ProjectVariable.PROJECT_VERSION=0.0.84
|
ProjectVariable.PROJECT_VERSION=0.0.85
|
||||||
ProjectVariable.REST_SERVER_PORT=3000
|
ProjectVariable.REST_SERVER_PORT=3000
|
||||||
ProjectVariable.REST_API_ROOT=/api/v1
|
ProjectVariable.REST_API_ROOT=/api/v1
|
||||||
ProjectVariable.REST_URL_ROOT=http://localhost:3000
|
ProjectVariable.REST_URL_ROOT=http://localhost:3000
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
## --------------------------------------------------
|
## --------------------------------------------------
|
||||||
#if ( !($entity.hasTag("BaseModel")) )
|
#if ( !($entity.hasTag("BaseModel") || $entity.hasTag("Omdb")) )
|
||||||
#cancel("Not a Base Model")
|
#cancel("Not a Base or Omdb Model")
|
||||||
#end
|
#end
|
||||||
## --------------------------------------------------
|
## --------------------------------------------------
|
||||||
#set( $env.language = 'TypeScript' )
|
#set( $env.language = 'TypeScript' )
|
||||||
#foreach( $link in $entity.links )
|
#foreach( $link in $entity.links )
|
||||||
import $link.fieldType from "./${link.fieldType}";
|
import $link.fieldType.replace("[]", "") from "./${link.fieldType.replace("[]", "")}";
|
||||||
#end
|
#end
|
||||||
|
|
||||||
export default interface $entity.name {
|
export default interface $entity.name {
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
#foreach( $entity in $model.allEntities )
|
#foreach( $entity in $model.allEntities )
|
||||||
#if ( $entity.hasTag("BaseModel") )
|
#if ( $entity.hasTag("BaseModel") || $entity.hasTag("Omdb") )
|
||||||
import $entity.name from "./${entity.name}";
|
import $entity.name from "./${entity.name}";
|
||||||
#end
|
#end
|
||||||
#end
|
#end
|
||||||
|
|
||||||
export type {
|
export type {
|
||||||
#foreach( $entity in $model.allEntities )
|
#foreach( $entity in $model.allEntities )
|
||||||
#if ( $entity.hasTag("BaseModel") )
|
#if ( $entity.hasTag("BaseModel") || $entity.hasTag("Omdb") )
|
||||||
$entity.name,
|
$entity.name,
|
||||||
#end
|
#end
|
||||||
#end
|
#end
|
||||||
|
|||||||
Reference in New Issue
Block a user