salix/back/models/user-phone-type.json

27 lines
488 B
JSON
Raw Normal View History

2019-10-15 12:44:00 +00:00
{
"name": "UserPhoneType",
"base": "VnModel",
"options": {
"mysql": {
"table": "userPhoneType"
}
},
"properties": {
"code": {
"id": true,
"type": "String"
},
"description": {
"type": "String"
}
2019-12-17 08:11:28 +00:00
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
2019-10-15 12:44:00 +00:00
}