44 lines
889 B
JSON
44 lines
889 B
JSON
{
|
|
"name": "ExpeditionTruck",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "expeditionTruck"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"roadmapFk": {
|
|
"type": "number"
|
|
},
|
|
"warehouseFk": {
|
|
"type": "number"
|
|
},
|
|
"eta": {
|
|
"type": "date"
|
|
},
|
|
"description": {
|
|
"type": "string"
|
|
},
|
|
"userFk": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"relations": {
|
|
"roadmap": {
|
|
"type": "belongsTo",
|
|
"model": "Roadmap",
|
|
"foreignKey": "roadmapFk"
|
|
},
|
|
"warehouse": {
|
|
"type": "belongsTo",
|
|
"model": "Warehouse",
|
|
"foreignKey": "warehouseFk"
|
|
}
|
|
}
|
|
}
|