salix/modules/client/back/models/client-unpaid.json

28 lines
528 B
JSON
Raw Normal View History

2022-04-07 09:41:35 +00:00
{
"name": "ClientUnpaid",
"base": "VnModel",
"options": {
2022-05-12 06:06:30 +00:00
"mysql": {
"table": "clientUnpaid"
}
2022-04-07 09:41:35 +00:00
},
"properties": {
2022-05-12 06:06:30 +00:00
"clientFk": {
"type": "number",
"id": true
},
"dated": {
"type": "date"
},
"amount": {
2022-05-12 07:47:47 +00:00
"type": "number"
2022-05-12 06:06:30 +00:00
}
2022-04-07 09:41:35 +00:00
},
"relations": {
"client": {
"type": "belongsTo",
"model": "Client",
"foreignKey": "clientFk"
}
}
}