登陆
接口地址
http://localhost:3000/login
| 参数 | 默认值 | 数据类型 | 必填 |
|---|---|---|---|
| username | null | String | true |
| password | null | String | true |
获取列表
接口地址
http://localhost:3000/user/listpage
| 参数 | 默认值 | 数据类型 | 必填 |
|---|---|---|---|
| page | 1 | Number | false |
| pagesize | 10 | Number | false |
| name | "" | String | false |
删除
接口地址
http://localhost:3000/user/remove
| 参数 | 默认值 | 数据类型 | 必填 |
|---|---|---|---|
| id | null | Number | true |
批量删除
接口地址
http://localhost:3000/user/batchremove
| 参数 | 默认值 | 数据类型 | 必填 | 示例 |
|---|---|---|---|---|
| ids | null | Sting | true | 1,3,4,5 |
编辑用户
接口地址
http://localhost:3000/user/edit
| 参数 | 默认值 | 数据类型 | 必填 |
|---|---|---|---|
| id | null | Number | true |
| name | null | String | true |
| addr | null | String | true |
| age | null | Number | true |
| sex | null | String | true |
添加用户
接口地址
http://localhost:3000/user/add
| 参数 | 默认值 | 数据类型 | 必填 |
|---|---|---|---|
| name | null | String | true |
| addr | null | String | true |
| age | null | String | true |
| sex | null | String | true |