12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "Comment",
  3. "fields": [
  4. {
  5. "fieldName": "content",
  6. "fieldType": "String"
  7. },
  8. {
  9. "fieldName": "likes",
  10. "fieldType": "Long"
  11. },
  12. {
  13. "fieldName": "dislikes",
  14. "fieldType": "Long"
  15. }
  16. ],
  17. "relationships": [
  18. {
  19. "relationshipType": "many-to-one",
  20. "relationshipName": "commenter",
  21. "otherEntityName": "user",
  22. "otherEntityField": "email"
  23. },
  24. {
  25. "relationshipType": "many-to-one",
  26. "relationshipName": "post",
  27. "otherEntityName": "post",
  28. "otherEntityField": "id"
  29. }
  30. ],
  31. "changelogDate": "20190102220103",
  32. "entityTableName": "comment",
  33. "dto": "no",
  34. "pagination": "no",
  35. "service": "no",
  36. "jpaMetamodelFiltering": false,
  37. "fluentMethods": true,
  38. "clientRootFolder": "",
  39. "applications": "*"
  40. }