salix/back/models/sage-withholding.json

36 lines
771 B
JSON
Raw Normal View History

2020-10-30 14:11:45 +00:00
{
"name": "SageWithholding",
"base": "VnModel",
"options": {
"mysql": {
"table": "sage.TiposRetencion"
}
},
2021-07-23 12:06:48 +00:00
"log": {
"showField": "withholding"
},
2020-10-30 14:11:45 +00:00
"properties": {
"id": {
2022-05-12 07:47:47 +00:00
"type": "number",
2020-10-30 14:11:45 +00:00
"id": true,
"description": "Identifier",
"mysql": {
"columnName": "CodigoRetencion"
}
},
"withholding": {
"type": "string",
"mysql": {
"columnName": "Retencion"
}
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}