{
    "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"
		}
    }
}