38 lines
867 B
JSON
38 lines
867 B
JSON
|
|
{
|
||
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
|
"title": "TbSysRolePermission",
|
||
|
|
"description": "角色权限关联信息",
|
||
|
|
"type": "object",
|
||
|
|
"allOf": [
|
||
|
|
{
|
||
|
|
"$ref": "BaseDTO.json"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"roleID": {
|
||
|
|
"type": "string",
|
||
|
|
"description": "角色ID",
|
||
|
|
"example": "1234567890123456789"
|
||
|
|
},
|
||
|
|
"permissionID": {
|
||
|
|
"type": "string",
|
||
|
|
"description": "权限ID",
|
||
|
|
"example": "1234567890123456789"
|
||
|
|
},
|
||
|
|
"creator": {
|
||
|
|
"type": "string",
|
||
|
|
"description": "创建人",
|
||
|
|
"example": "admin"
|
||
|
|
},
|
||
|
|
"updater": {
|
||
|
|
"type": "string",
|
||
|
|
"description": "更新人",
|
||
|
|
"example": "admin"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"required": ["roleID", "permissionID"]
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|