文档
测试

添加用户

POST
http://localhost:8888/qgy/user/save

接口描述

根据JSON对象添加用户

请求参数

参数名
类型
描述
必填
name
String
用户姓名(NULL)
必填
account
String
用户账号(NOT NULL)
必填
password
String
用户密码(NOT NULL)
必填
phone
String
用户电话(NULL)
必填
adhibitionId
Integer
关联应用主键id(NOT NULL)
必填

说明 / 示例

``` { "result": 1, "msg": "successful operation!", "code": "QG_SUS1000", "data": [ { "id": 15, "name": "测试", "account": "ceshi", "password": "123", "phone": "123456789", "adhibitionId": 9, "joindate": "2019-07-10T06:08:54.368+0000" } ] } ```