1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "Post",
- "fields": [
- {
- "fieldName": "numberOfComments",
- "fieldType": "Long"
- },
- {
- "fieldName": "content",
- "fieldType": "String"
- },
- {
- "fieldName": "likes",
- "fieldType": "Long"
- },
- {
- "fieldName": "dislikes",
- "fieldType": "Long"
- }
- ],
- "relationships": [
- {
- "relationshipType": "many-to-one",
- "relationshipName": "owner",
- "otherEntityName": "user",
- "otherEntityField": "email"
- }
- ],
- "changelogDate": "20190102220102",
- "entityTableName": "post",
- "dto": "no",
- "pagination": "no",
- "service": "no",
- "jpaMetamodelFiltering": false,
- "fluentMethods": true,
- "clientRootFolder": "",
- "applications": "*"
- }
|