salix/modules/worker/back/models/department-mana.json

26 lines
502 B
JSON

{
"name": "DepartmentMana",
"base": "VnModel",
"options": {
"mysql": {
"table": "departmentMana"
}
},
"properties": {
"amount": {
"type": "number"
},
"salesDepartmentFk": {
"id": true,
"type": "number"
}
},
"relations": {
"department": {
"type": "belongsTo",
"model": "Department",
"foreignKey": "salesDepartmentFk"
}
}
}