2018-11-13 06:44:03 +00:00
|
|
|
{
|
|
|
|
"name": "Travel",
|
|
|
|
"base": "VnModel",
|
|
|
|
"options": {
|
|
|
|
"mysql": {
|
|
|
|
"table": "travel"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"type": "Number",
|
|
|
|
"id": true,
|
|
|
|
"description": "Identifier"
|
|
|
|
},
|
|
|
|
"shipped": {
|
|
|
|
"type": "date"
|
|
|
|
},
|
|
|
|
"landed": {
|
|
|
|
"type": "date"
|
|
|
|
},
|
|
|
|
"isDelivered": {
|
|
|
|
"type": "Boolean"
|
|
|
|
},
|
|
|
|
"isReceived": {
|
|
|
|
"type": "Boolean"
|
|
|
|
},
|
|
|
|
"ref": {
|
|
|
|
"type": "String"
|
2019-01-21 10:45:53 +00:00
|
|
|
},
|
|
|
|
"totalEntries": {
|
|
|
|
"type": "Number"
|
2018-11-13 06:44:03 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"relations": {
|
|
|
|
"agency": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "Agency",
|
|
|
|
"foreignKey": "agencyFk"
|
|
|
|
},
|
|
|
|
"warehouseIn": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "Warehouse",
|
|
|
|
"foreignKey": "warehouseInFk"
|
|
|
|
},
|
|
|
|
"warehouseOut": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "Warehouse",
|
|
|
|
"foreignKey": "warehouseOutFk"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|