salix/back/models/collection.json

27 lines
500 B
JSON
Raw Normal View History

2020-03-23 07:24:57 +00:00
{
"name": "Collection",
"base": "VnModel",
"properties": {
"id": {
"id": true,
"type": "number",
"required": true
},
"workerFk": {
"type": "number"
}
},
2024-04-12 08:26:32 +00:00
"options": {
"mysql": {
"table": "collection"
}
},
2020-03-23 07:24:57 +00:00
"acls": [{
"property": "validations",
"accessType": "EXECUTE",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}]
}