38 lines
748 B
JSON
38 lines
748 B
JSON
{
|
|
"name": "SupplierAccount",
|
|
"base": "Loggable",
|
|
"log": {
|
|
"model":"SupplierLog",
|
|
"relation": "supplier"
|
|
},
|
|
"options": {
|
|
"mysql": {
|
|
"table": "supplierAccount"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"iban": {
|
|
"type": "string"
|
|
},
|
|
"beneficiary": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"relations": {
|
|
"supplier": {
|
|
"type": "belongsTo",
|
|
"model": "Supplier",
|
|
"foreignKey": "supplierFk"
|
|
},
|
|
"bankEntity": {
|
|
"type": "belongsTo",
|
|
"model": "BankEntity",
|
|
"foreignKey": "bankEntityFk"
|
|
}
|
|
}
|
|
} |