salix/modules/invoiceIn/back/models/invoice-in-config.json

39 lines
794 B
JSON
Raw Permalink Normal View History

2022-12-16 09:36:18 +00:00
{
"name": "InvoiceInConfig",
"base": "VnModel",
"options": {
"mysql": {
"table": "invoiceInConfig"
}
},
"properties": {
"id": {
"id": true,
"type": "number",
"description": "Identifier"
},
"retentionRate": {
"type": "number"
},
"retentionName": {
"type": "string"
2023-03-27 12:29:22 +00:00
},
"daysAgo": {
"type": "number"
2022-12-16 09:36:18 +00:00
}
},
"relations": {
"sageWithholding": {
"type": "belongsTo",
"model": "SageWithholding",
2024-05-13 09:23:29 +00:00
"foreignKey": "sageFarmerWithholdingFk"
2022-12-16 09:36:18 +00:00
}
},
"acls": [{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}]
}