35 lines
609 B
JSON
35 lines
609 B
JSON
{
|
|
"name": "ExpeditionPallet",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "expeditionPallet"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"built": {
|
|
"type": "date"
|
|
},
|
|
"position": {
|
|
"type": "number"
|
|
},
|
|
"isPrint": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"relations": {
|
|
"roadmapStop": {
|
|
"type": "belongsTo",
|
|
"model": "RoadmapStop",
|
|
"foreignKey": "truckFk"
|
|
}
|
|
}
|
|
|
|
}
|
|
|