32 lines
476 B
JSON
32 lines
476 B
JSON
{
|
|
"name": "Buyer",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "buyer"
|
|
}
|
|
},
|
|
"properties": {
|
|
"userFk": {
|
|
"type": "number",
|
|
"required": true,
|
|
"id": true
|
|
},
|
|
"nickname": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"display": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"acls": [
|
|
{
|
|
"accessType": "READ",
|
|
"principalType": "ROLE",
|
|
"principalId": "employee",
|
|
"permission": "ALLOW"
|
|
}
|
|
]
|
|
}
|