salix/modules/client/back/models/address-waste.json

26 lines
497 B
JSON
Raw Normal View History

2023-11-07 15:13:21 +00:00
{
"name": "AddressWaste",
2023-11-07 15:13:21 +00:00
"base": "VnModel",
"options": {
"mysql": {
"table": "addressWaste"
2023-11-07 15:13:21 +00:00
}
},
"properties": {
"addressFk": {
"type": "number",
"id": true
},
"type": {
"type": "string",
"id": true
2023-11-07 15:13:21 +00:00
}
},
"relations": {
"address": {
"type": "belongsTo",
"model": "Address",
"foreignKey": "addressFk"
}
}
}