salix/modules/travel/back/models/currency.json

34 lines
620 B
JSON

{
"name": "Currency",
"base": "VnModel",
"options": {
"mysql": {
"table": "currency"
}
},
"properties": {
"id": {
"type": "number",
"id": true,
"description": "Identifier"
},
"code": {
"type": "string"
},
"name": {
"type": "string"
},
"ratio": {
"type": "number"
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}