添加访问权限信息
POST
/api/v1/system/access/info/create请求参数
Body 参数application/json
id
integer <int64>
编号
code
string
必需
module
string
模块
group
string
分组
name
string
名称
isNeedAuth
integer <int64>
可选
是否需要认证( 1需要 2不需要)
>= 1<= 2
authType
integer <int64>
可选
1(all) 全部人可以操作 2(admin) 默认授予租户管理员权限 3(superAdmin,supper) default租户才可以操作(超管是跨租户的)
<= 3
desc
string
备注
apis
array[object (ApiInfo) {7}]
接口信息
id
integer <int64>
接口编号
accessCode
string
模块编号
route
string
接口路由
method
string
可选
接口请求方式: (1 GET 2 POST 3 HEAD 4 OPTIONS 5 PUT 6 DELETE 7 TRACE 8 CONNECT 9 其它)
name
string
接口名称
businessType
integer <int64>
可选
业务类型(1新增 2修改 3删除 4查询 5其它)
>= 1<= 5
desc
string
备注
示例
{
"id": 0,
"code": "string",
"module": "string",
"group": "string",
"name": "string",
"isNeedAuth": 1,
"authType": 3,
"desc": "string",
"apis": [
{
"id": 0,
"accessCode": "string",
"route": "string",
"method": "string",
"name": "string",
"businessType": 1,
"desc": "string"
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
A successful response.
数据结构
code
integer
返回code
默认值:
200
msg
string
返回的消息
data
object (WithID)
可选
id
integer <int64>
id
示例
未设置
最后修改时间: 4 小时前