salix/modules/invoiceIn/back/models/invoice-in-tax.json

43 lines
815 B
JSON
Raw Normal View History

2021-07-23 12:06:48 +00:00
{
"name": "InvoiceInTax",
"base": "VnModel",
"options": {
"mysql": {
"table": "invoiceInTax"
}
},
"properties": {
"id": {
"id": true,
"type": "number",
"description": "Identifier"
},
"invoiceInFk": {
"type": "number"
},
"taxCodeFk": {
"type": "number"
},
"taxableBase": {
"type": "number"
},
"expenceFk": {
"type": "string"
},
"foreignValue": {
"type": "number"
},
"taxTypeSageFk": {
"type": "number"
},
"transactionTypeSageFk": {
"type": "number"
},
"created": {
"type": "date"
}
}
}