27 lines
541 B
JSON
27 lines
541 B
JSON
|
{
|
||
|
"name": "Business",
|
||
|
"base": "VnModel",
|
||
|
"options": {
|
||
|
"mysql": {
|
||
|
"table": "business"
|
||
|
}
|
||
|
},
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "number",
|
||
|
"id": true
|
||
|
}
|
||
|
},
|
||
|
"relations": {
|
||
|
"worker": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "Worker",
|
||
|
"foreignKey": "workerFk"
|
||
|
},
|
||
|
"department": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "Department",
|
||
|
"foreignKey": "departmentFk"
|
||
|
}
|
||
|
}
|
||
|
}
|