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

32 lines
577 B
JSON
Raw Permalink Normal View History

2022-04-07 09:41:35 +00:00
{
"name": "ClientUnpaid",
"base": "VnModel",
2024-06-19 07:40:24 +00:00
"mixins": {
"Loggable": true
},
2022-04-07 09:41:35 +00:00
"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"
}
}
2024-06-19 07:40:24 +00:00
}