salix/modules/supplier/back/models/supplier-account.json

41 lines
781 B
JSON

{
"name": "SupplierAccount",
"base": "VnModel",
"mixins": {
"Loggable": true
},
"options": {
"mysql": {
"table": "supplierAccount"
}
},
"properties": {
"id": {
"type": "number",
"id": true,
"description": "Identifier"
},
"iban": {
"type": "string"
},
"beneficiary": {
"type": "string"
},
"supplierFk": {
"type": "string"
}
},
"relations": {
"supplier": {
"type": "belongsTo",
"model": "Supplier",
"foreignKey": "supplierFk"
},
"bankEntity": {
"type": "belongsTo",
"model": "BankEntity",
"foreignKey": "bankEntityFk"
}
}
}