feat(model) Created the model for packagingMistake
gitea/salix/pipeline/head Something is wrong with the build of this commit Details

This commit is contained in:
Pau 2022-10-05 14:04:30 +02:00
parent f2407ceb0e
commit 940b431059
2 changed files with 28 additions and 0 deletions

View File

@ -20,6 +20,9 @@
"Packaging": { "Packaging": {
"dataSource": "vn" "dataSource": "vn"
}, },
"PackagingMistake": {
"dataSource": "vn"
},
"PrintServerQueue": { "PrintServerQueue": {
"dataSource": "vn" "dataSource": "vn"
}, },

View File

@ -0,0 +1,25 @@
{
"name": "PackagingMistake",
"base": "VnModel",
"options": {
"mysql": {
"table": "packagingMistake"
}
},
"properties": {
"expeditionFk": {
"id": true,
"type": "number"
},
"workerFk": {
"type": "number"
},
"typeFk": {
"type": "number"
},
"created": {
"type": "date"
}
}
}