salix/back/models/say-simple-country.json

26 lines
515 B
JSON
Raw Normal View History

2024-11-08 10:51:00 +00:00
{
"name": "SaySimpleCountry",
"base": "VnModel",
"options": {
"mysql": {
"table": "saySimpleCountry"
}
},
"properties": {
"countryFk": {
"type": "number",
"id": true
},
"channel": {
"type": "number"
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
2024-11-08 16:47:10 +00:00
"principalId": "$authenticated",
2024-11-08 10:51:00 +00:00
"permission": "ALLOW"
}
]
}