salix/modules/ticket/back/models/annual-average-invoiced.json

24 lines
405 B
JSON
Raw Normal View History

{
"name": "AnnualAverageInvoiced",
"base": "VnModel",
"options": {
"mysql": {
"table": "annualAverageInvoiced"
}
},
"properties": {
"invoiced": {
2022-05-12 07:47:47 +00:00
"type": "number"
},
"clientFk": {
"id": true
}
},
"relations": {
"client": {
"type": "belongsTo",
"model": "client",
"foreignKey": "clientFk"
}
}
}