salix/services/production/common/models/worker.json

31 lines
521 B
JSON
Raw Normal View History

2017-12-12 11:26:18 +00:00
{
"name": "worker",
"base": "VnModel",
"properties": {
"id": {
"id": true,
"type": "Number",
"forceId": false
},
"workerCode": {
"type": "String"
},
"firstName": {
"type": "String"
},
"name": {
"type": "String"
}
,
"phone": {
"type": "String"
}
},
"relations": {
"user": {
"type": "belongsTo",
"model": "User",
"foreignKey": "userFk"
}
}
}