salix/modules/worker/back/models/new-worker-config.json

40 lines
777 B
JSON
Raw Normal View History

2022-11-14 14:19:16 +00:00
{
"name": "NewWorkerConfig",
"base": "VnModel",
"options": {
"mysql": {
"table": "newWorkerConfig"
}
},
"properties": {
"id": {
"type": "number",
"id": true,
"description": "Identifier"
},
"street": {
"type": "string"
},
"provinceFk": {
"type": "number"
},
"companyFk": {
"type": "number"
},
"profileTypeFk": {
"type": "number"
},
"roleFk": {
"type": "number"
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}