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

24 lines
399 B
JSON
Raw Permalink Normal View History

2023-10-10 11:44:22 +00:00
{
2023-12-26 12:44:52 +00:00
"name": "Locker",
"base": "VnModel",
2024-05-08 09:03:18 +00:00
"description": "Worker's locker",
2024-01-17 12:20:28 +00:00
"options": {
"mysql": {
"table": "locker"
}
},
2023-10-10 11:44:22 +00:00
"properties": {
"code": {
"type": "string"
},
"gender": {
"type": "string"
}
2024-05-08 09:03:18 +00:00
},
"scopes": {
"codes": {
"fields": ["id","code"]
}
2023-10-10 11:44:22 +00:00
}
}