forked from rsandell/jhipster-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBankAccount.json
39 lines (39 loc) · 991 Bytes
/
BankAccount.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"relationships": [
{
"relationshipId": 1,
"relationshipName": "user",
"otherEntityName": "user",
"relationshipType": "many-to-one",
"otherEntityField": "login"
},
{
"relationshipId": 2,
"relationshipName": "operation",
"otherEntityName": "operation",
"relationshipType": "one-to-many",
"otherEntityRelationshipName": "bankAccount"
}
],
"fields": [
{
"fieldId": 1,
"fieldName": "name",
"fieldType": "String",
"fieldValidateRules": [
"required"
]
},
{
"fieldId": 2,
"fieldName": "balance",
"fieldType": "BigDecimal",
"fieldValidateRules": [
"required"
]
}
],
"changelogDate": "20150805124838",
"dto": "no",
"pagination": "no"
}