crusade-tracker/.jhipster/Army.json

75 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2021-01-18 20:27:50 +00:00
{
"name": "Army",
"fields": [
{
"fieldName": "armyDescription",
"fieldType": "byte[]",
"fieldTypeBlobContent": "text"
},
{
"fieldName": "armyName",
"fieldType": "String",
"fieldValidateRules": ["required"]
},
{
"fieldName": "armyFaction",
"fieldType": "String"
},
{
"fieldName": "armyPowerLevel",
"fieldType": "Long"
},
{
"fieldName": "armyPoints",
"fieldType": "Long"
},
{
"fieldName": "armyPointsOrPL",
"fieldType": "Boolean"
},
{
"fieldName": "requisition",
"fieldType": "Long"
},
{
"fieldName": "battleTally",
"fieldType": "Long"
},
{
"fieldName": "battlesWon",
"fieldType": "Long"
}
],
"relationships": [
{
"relationshipType": "many-to-one",
"otherEntityName": "user",
"otherEntityRelationshipName": "army",
"relationshipValidateRules": "required",
"relationshipName": "owner",
"otherEntityField": "login"
},
{
"relationshipName": "units",
"otherEntityName": "unitArmy",
"relationshipType": "one-to-many",
"otherEntityRelationshipName": "army"
}
],
"changelogDate": "20200727033716",
"entityTableName": "army",
"dto": "mapstruct",
"pagination": "no",
"service": "serviceImpl",
"jpaMetamodelFiltering": false,
"fluentMethods": true,
"readOnly": false,
"embedded": false,
"clientRootFolder": "",
"applications": "*",
"searchEngine": false,
"databaseType": "sql"
}