Commit f9c47b61 authored by Hellmich, Christoph's avatar Hellmich, Christoph
Browse files

Generate entities

parent 7b61617c
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
{
  "relationships": [
    {
      "relationshipId": 1,
      "relationshipName": "origin",
      "otherEntityName": "statement",
      "relationshipType": "many-to-one",
      "otherEntityField": "id"
    }
  ],
  "fields": [],
  "changelogDate": "20160321161721",
  "dto": "no",
  "pagination": "no",
  "service": "no"
}
 No newline at end of file

.jhipster/Element.json

0 → 100644
+32 −0
Original line number Diff line number Diff line
{
  "relationships": [
    {
      "relationshipId": 1,
      "relationshipName": "step",
      "otherEntityName": "step",
      "relationshipType": "many-to-one",
      "otherEntityField": "id"
    },
    {
      "relationshipId": 2,
      "relationshipName": "template",
      "otherEntityName": "elementTemplate",
      "relationshipType": "many-to-one",
      "otherEntityField": "id"
    }
  ],
  "fields": [
    {
      "fieldId": 1,
      "fieldName": "name",
      "fieldType": "String",
      "fieldValidateRules": [
        "required"
      ]
    }
  ],
  "changelogDate": "20160321161714",
  "dto": "no",
  "pagination": "no",
  "service": "no"
}
 No newline at end of file
+28 −0
Original line number Diff line number Diff line
{
  "relationships": [
    {
      "relationshipId": 1,
      "relationshipName": "file",
      "otherEntityName": "file",
      "relationshipType": "many-to-many",
      "otherEntityField": "id",
      "ownerSide": true
    }
  ],
  "fields": [
    {
      "fieldId": 1,
      "fieldName": "code",
      "fieldType": "String"
    },
    {
      "fieldId": 2,
      "fieldName": "settings",
      "fieldType": "String"
    }
  ],
  "changelogDate": "20160321161715",
  "dto": "no",
  "pagination": "no",
  "service": "no"
}
 No newline at end of file
+8 −0
Original line number Diff line number Diff line
{
  "relationships": [],
  "fields": [],
  "changelogDate": "20160321161720",
  "dto": "no",
  "pagination": "no",
  "service": "no"
}
 No newline at end of file

.jhipster/File.json

0 → 100644
+30 −0
Original line number Diff line number Diff line
{
  "relationships": [
    {
      "relationshipId": 1,
      "relationshipName": "elementTemplate",
      "otherEntityName": "elementTemplate",
      "relationshipType": "many-to-many",
      "ownerSide": false,
      "otherEntityRelationshipName": "file"
    }
  ],
  "fields": [
    {
      "fieldId": 1,
      "fieldName": "data",
      "fieldType": "byte[]",
      "fieldTypeBlobContent": "any"
    },
    {
      "fieldId": 2,
      "fieldName": "type",
      "fieldType": "FileType",
      "fieldValues": "IMAGE,CSV,VIDEO"
    }
  ],
  "changelogDate": "20160321161716",
  "dto": "no",
  "pagination": "no",
  "service": "no"
}
 No newline at end of file
Loading