salix/back/models/accounting-type.json

33 lines
700 B
JSON
Raw Normal View History

2020-08-27 06:24:21 +00:00
{
"name": "AccountingType",
"base": "VnModel",
"options": {
"mysql": {
"table": "accountingType"
}
},
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
"description": {
"type": "String",
"required": true
},
"receiptDescription": {
"type": "String",
"required": true
2020-12-16 07:33:08 +00:00
},
"code": {
"type": "String"
2020-08-27 06:24:21 +00:00
}
},
"acls": [{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}]
}