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

34 lines
620 B
JSON
Raw Normal View History

2019-12-05 13:20:11 +00:00
{
"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"
}
2020-01-10 10:52:35 +00:00
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
2019-12-05 13:20:11 +00:00
}