salix/modules/item/back/models/expense.json

29 lines
553 B
JSON

{
"name": "Expense",
"base": "VnModel",
"options": {
"mysql": {
"table": "expence"
}
},
"properties": {
"id": {
"id": true,
"type": "number",
"description": "Identifier"
},
"name": {
"type": "string"
},
"isWithheld": {
"type": "number"
}
},
"relations": {
"taxType": {
"type": "belongsTo",
"model": "TaxType",
"foreignKey": "taxTypeFk"
}
}
}