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

34 lines
650 B
JSON
Raw Normal View History

2022-11-14 14:19:16 +00:00
{
"name": "WorkerConfig",
2022-11-14 14:19:16 +00:00
"base": "VnModel",
"options": {
"mysql": {
"table": "workerConfig"
2022-11-14 14:19:16 +00:00
}
},
"properties": {
"id": {
"type": "number",
"id": true,
"description": "Identifier"
},
"roleFk": {
"type": "number"
},
"payMethodFk": {
"type": "number"
},
2023-04-25 12:25:22 +00:00
"businessTypeFk": {
"type": "string"
2022-11-14 14:19:16 +00:00
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}