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

22 lines
365 B
JSON

{
"name": "Department",
"base": "VnModel",
"options": {
"mysql": {
"table": "department"
}
},
"properties": {
"id": {
"id": true,
"type": "Number"
},
"name": {
"type": "String"
},
"parentFk": {
"type": "Number"
}
}
}