salix/modules/ticket/back/models/expeditionPallet.json

35 lines
609 B
JSON
Raw Normal View History

2023-09-22 10:29:56 +00:00
{
"name": "ExpeditionPallet",
2024-03-14 07:36:19 +00:00
"base": "VnModel",
2023-09-22 10:29:56 +00:00
"options": {
"mysql": {
"table": "expeditionPallet"
}
2023-09-26 11:12:18 +00:00
},
"properties": {
"id": {
"type": "number",
"id": true,
"description": "Identifier"
2024-03-14 07:36:19 +00:00
},
"built": {
"type": "date"
},
"position": {
"type": "number"
},
"isPrint": {
"type": "number"
}
2023-09-22 10:29:56 +00:00
},
2024-03-14 07:36:19 +00:00
"relations": {
2024-05-20 11:19:01 +00:00
"roadmapStop": {
2024-03-14 07:36:19 +00:00
"type": "belongsTo",
2024-05-16 08:20:08 +00:00
"model": "RoadmapStop",
2024-03-14 07:36:19 +00:00
"foreignKey": "truckFk"
}
}
2023-09-26 11:12:18 +00:00
}
2023-09-22 10:29:56 +00:00