给业务系统分配节点的功能归入新增、修改接口

This commit is contained in:
陈劲松
2019-09-06 16:36:45 +08:00
parent 7237f136ce
commit 044bb6256c

View File

@@ -1977,6 +1977,7 @@ data |Object |R | 
name |String |R |名称
remark |String |O |备注
usergroupIds |Integer[] |O |用户组id,分配现有用户组
uuids |Integer[] |O |节点组id,分配节点
示例:
@@ -1985,7 +1986,8 @@ usergroupIds |Integer[] |O |用户组id,分配现有用户组
{
"name": "system22",
"remark": "en",
"usergroupIds": [1,2,3,4]
"usergroupIds": [1,2,3,4],
"uuids": [1,3,4]
}
```
@@ -2019,6 +2021,7 @@ id |Integer |R |id
name |String |R |名称
remark |String |O |备注
usergroupIds |Integer[] |O |用户组id
uuids |Integer[] |O |节点组id,分配节点
示例:
@@ -2027,7 +2030,8 @@ usergroupIds |Integer[] |O |用户组id
"id": 9,
"name": "cab9",
"remark": "en",
"usergroupIds": [1,2,3,4]
"usergroupIds": [1,2,3,4],
"uuids": [1,3,4]
}
```