## 新增账号
**简要描述:**
* 新增账号
**请求URL:**
* /auth/userAdd
**请求方式:**
* POST
**参数:**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| username | 否 | string | 用户名 |
| password | 否 | string | 密码 |
| userId| 否 | string | 用户id|
| groupIdList| 否 | array | 设备分组id|
| deviceIdList| 否 | array | 设备id|
**请求示例**
~~~
{
{
"username ": "",
"password ": "",
"userId": "",
"groupIdList": 1,
"deviceIdList": 1
}
}
~~~
**返回示例**
~~~
{
"code": 0,
"message": "新增成功"
}
~~~