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

22 lines
365 B
JSON
Raw Normal View History

2019-02-01 08:31:01 +00:00
{
"name": "Department",
"base": "VnModel",
"options": {
"mysql": {
"table": "department"
}
},
"properties": {
"id": {
"id": true,
"type": "Number"
},
"name": {
"type": "String"
2019-10-04 05:41:24 +00:00
},
"parentFk": {
"type": "Number"
2019-02-01 08:31:01 +00:00
}
}
}