工作组管理
## 本模块包含1个接口
**简要描述:**
- 工作组列表接口
**请求URL:**
- ` http://IP:9090//watch/api/personGroup/findGroup `
**请求方式:**
- POST
**参数:**
|参数名|必选|类型|说明|
|:---- |:---|:----- |----- |
|token|是|String |当前登录用户token|
**返回示例**
```
{
"code": 0,
"data": {
"count": 2,
"operatorNum":4,
"operatorList":[{
"operatorID": "1",
"operatorName": "朱瑞亮",
"operatorDeviceState": "1",
"operatorPositionLNG": "118.189278",
"operatorPositionLAT": "24.491821",
"operatorPositionState": "1",
"operatorTimestamp": "1618215197000",
"operatorHeartRate": "95.00",
"operatorSpo2": "98.00",
"operatorPressure": "101325.00",
"operatorAltitude": "1029.00",
"operatorSOS": "0",
"recentxy": [
[119.297552, 26.079544],
[119.297554, 26.079549],
[119.297556, 26.079554],
[119.297558, 26.079559],
[119.29756, 26.079564],
[119.297562, 26.079569],
[119.297564, 26.079574],
[119.297566, 26.079579],
[119.297568,26.079584]
],
"uwbRegion":"3",
"uwbState":"1",
"uwbLocxy":"[-81.9152069, 57.3576431, 0]"
},
{
"operatorID": "1",
"operatorName": "李刚",
"operatorTimestamp": "1618215197000",
"operatorDeviceState": "1",
"operatorPositionLNG": "118.189273",
"operatorPositionLAT": "24.491823",
"operatorPositionState": "2",
"operatorHeartRate": "95.00",
"operatorSpo2": "98.00",
"operatorPressure": "101325.00",
"operatorAltitude": "1029.00",
"operatorSOS": "0",
"recentxy": [
[119.297552, 26.079544],
[119.297554, 26.079549],
[119.297556, 26.079554],
[119.297558, 26.079559],
[119.29756, 26.079564],
[119.297562, 26.079569],
[119.297564, 26.079574],
[119.297566, 26.079579],
[119.297568,26.079584]
],
"uwbRegion":"3",
"uwbState":"1",
"uwbLocxy":"[-81.9152069, 57.3576431, 0]"
}
]
}
}
```
**返回参数说明**
|参数名|类型|说明|
|:----- |:-----|----- |
|count|int |一共多少条|
|operatorNum|int |组员数量|
|operatorList|list |组员列表数据|
|  operatorID|int |组员ID|
|  operatorName|String|组员姓名|
|  operatorTimestamp|long |最后一次更新时间|
|  operatorDeviceState|int |组员所持有设备状态:0离线;1在线;3损坏;99删除|
|  operatorPositionLNG|float |精度|
|  operatorPositionLAT|float |维度|
|  operatorPositionState|int |区域状态:1.处于工作区域内;2.处于工作区域外;9.处于危险区域内|
|  operatorHeartRate|float |心率|
|  operatorSpo2|float |血氧(%)|
|  operatorPressure|float |气压|
|  operatorAltitude|float |海拔|
|  operatorSOS|int|是否呼救:0否;1是|
|  recentxy|list|最近一小时的坐标点|
| uwbRegion|String|基站区域ID|
| uwbState|String|是否进入室内 1:进入 2:未进入|
**备注**
- 更多返回错误代码请看首页的错误代码描述