## 登录
#### 接口URL
> {{baseUrl}}/cms/permission/login
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"username": "bingofree",
"pwd": "123456"
}
```
## 退出
#### 接口URL
> {{baseUrl}}/cms/permission/logout
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{}
```
## 删除
#### 接口URL
> {{baseUrl}}/cms/permission/delete
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"ids": [
2
]
}
```
## 列表
#### 接口URL
> {{baseUrl}}/cms/permission/list
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"searchKey": {},
"offset": 0,
"limit": 10
}
```
## 创建/修改
#### 接口URL
> {{baseUrl}}/cms/permission/save
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"username": "bingofree",
"pwd": "123456",
"roleId": 2
}
```