Commit a61062e8 authored by 赵啸非's avatar 赵啸非

修改同步用户

parent a12d0425
......@@ -2578,6 +2578,72 @@ dict|object|字典对象
}
```
### 查询房间管理列表
**请求URL:** office/room/list
**请求方式:** POST
**内容类型:** application/json;charset=utf-8
**简要描述:** 查询房间管理
**请求参数:**
参数名称|类型|必填|描述
:---|:---|:---|:------
page|Integer|否|当前页
size|Integer|否|每页条数,值为-1,查询所有记录
deviceCode| String |否|设备编码
**请求样例:**
```
{
"page":1,
"size":10,
"deviceCode","adfdd"
}
```
**响应参数:**
参数名称|参数类型|描述
:---|:---|:------
code|Integer|结果码(-1.失败,1.成功)
msg|String|消息
data|object|数据对象
 per_page|Integer|每页条数
 total|Integer|总条数
 last_page|Integer|总页数
 current_page|Integer|当前页
 data|array|结果集列表|数组
  id|Long|主键ID,主键,自增长
  roomName|String|房间名称
  roomCode|String|房间编码
  roomType|Integer|房间类型(0.会议室,1.办公室)
  deviceId|Long|绑定的电子门牌的设备ID
  deviceName|String|绑定的设备名称
  countPerson|Long|员工人数
  remark|String|备注
  createUserId|Long|创建用户
  createTime|Date|创建时间
  updateUserId|Long|更新用户
  updateTime|Date|更新时间
dict|object|字典对象
 roomType|object|字典属性对象,详见附录
**响应消息样例:**
```
{
"code":1,
"data":{
}
}
```
### 更新工作人员状态信息
**请求URL:** workman/change/status
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment