🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## 电子锁列表 ~~~[api] get:/door_lock <<< success { "code": 0, "data": { "data": [ { "id": 1, "sn": "0122010000000023",//电子锁编号 "create_time": "2017-12-06 18:41:58",//创建时间 "status": 0,//电子锁状态 0 正常 1 已冻结 "h_name": "树海",//房源名 "h_community": "光华中心",//小区名 "h_unit": "9栋9单元9号",//单元楼层 "is_empower": 0,//是否授权物业 0 已授权 1 未授权 "r_name": null,//房间名 "name": "测试账号王",//物业姓名 "phone": "13540180752",//物业手机号 "landline": "028-88888888"//物业座机号码 } ], "currentPage": 1,//当前页 "pageNumber": 10,//页码 "count": 1//总条数 } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 电子锁分页 ~~~[api] get:/door_lock/pag *int:currentPage=1#当前页 *int:pageNumber=10#页码 <<< success { "code": 0, "data": { "data": [ { "id": 1, "sn": "0122010000000023",//电子锁编号 "create_time": "2017-12-06 18:41:58",//创建时间 "status": 0,//电子锁状态 "h_name": "树海",//房源名 "h_community": "光华中心",//小区名 "h_unit": "9栋9单元9号",//单元楼层 "is_empower": 0,//是否授权物业 0 已授权 1 未授权 "r_name": null,//房间名 "name": "测试账号王",//物业姓名 "phone": "13540180752",//物业手机号 "landline": "028-88888888"//物业座机号码 } ] } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 电子锁搜索 ~~~[api] get:/door_lock/search *string:search=0122010000000023#电子锁编号 <<< success { "code": 0, "data": { "data": [ { "id": 1, "sn": "0122010000000023",//电子锁编号 "create_time": "2017-12-06 18:41:58",//创建时间 "status": 0,//电子锁状态 "h_name": "树海",//房源名 "h_community": "光华中心",//小区名 "h_unit": "9栋9单元9号",//单元楼层 "is_empower": 0,//是否授权物业 0 已授权 1 未授权 "r_name": null,//房间名 "name": "测试账号王",//物业姓名 "phone": "13540180752",//物业手机号 "landline": "028-88888888"//物业座机号码 } ] } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 冻结电子锁 ~~~[api] post:/door_lock/freeze *array:id=[1]#电子锁列表id <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 解除冻结电子锁 ~~~[api] post:/door_lock/relieve *array:id=[1]#电子锁列表id <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 电子锁开锁记录列表 ~~~[api] get:/door_lock/record_index *int:id=1#电子锁列表id <<< success { "code": 0, "data": { "data": [ { "mode": 0,//开门方式 0 看房 1 租房 "create_time": "2018-01-12 10:32:35",//开锁时间 "user_name": null,//开锁用户昵称 "property_name": null//开锁物业姓名 } ], "currentPage": 1,//当前页 "pageNumber": 10,//页码 "count": 1//总条数 } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 电子锁开锁记录分页 ~~~[api] get:/door_lock/record_pag *int:id=1#电子锁列表id *int:currentPage=1#当前页 *int:pageNumber=10#页码 <<< success { "code": 0, "data": { "data": [ { "mode": 0,//开门方式 0 看房 1 租房 "create_time": "2018-01-12 10:32:35",//开锁时间 "user_name": null,//开锁用户昵称 "property_name": null//开锁物业姓名 } ] } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 门锁记录 >[info] 门锁打开或者关闭的记录 > 门锁服务端的记录 ~~~[api] get:/door_lock/lock_record *string:qr_code=1234567489#电子锁二维码编号 int:current_page=1#当前页 int:page_number=10#页码 <<< success { "code": 0, "data": { "list": [ { "id": 1, "sn": "0122010000000043",//电子锁 sn "qr_code": "0122010000000043",//电子锁二维码号 "status": 1,//状态 0 打开 1 关闭 "create_time": "2018-06-09 11:28:24"//操作时间 } ], "current_page": 1,//当前页 "page_number": 10,//页码 "total": 1//总条数 } } <<< error ~~~ ## 看房开门记录 ~~~[api] get:/door_lock/show_room int:current_page=1#当前页 int:page_number=10#页码 <<< success { "code": 0, "data": { "data": [ { "mode": 0,// 0 看房 1 租房 "create_time": "2018-01-19 11:50:13",//开锁时间 "password": "123456",//开锁密码 "sn": "0122010000000043",//二维码编号 "user_name": null,//开锁用户姓名 "user_phone": null,//开锁用户手机号 "property_name": "测试账号王",//开锁物业姓名 "property_phone": "13540180752"//开锁物业手机号 } ], "currentPage": 1,//当前页 "pageNumber": 10,//页码 "count": 1//总条数 } } <<< error ~~~ ## 租房开门记录 ~~~[api] get:/door_lock/renting int:current_page=1#当前页 int:page_number=10#页码 <<< success { "code": 0, "data": { "data": [ { "mode": 0,// 0 看房 1 租房 "create_time": "2018-01-19 11:50:13",//开锁时间 "password": "123456",//开锁密码 "sn": "0122010000000043",//二维码编号 "user_name": null,//开锁用户姓名 "user_phone": null,//开锁用户手机号 "property_name": "测试账号王",//开锁物业姓名 "property_phone": "13540180752"//开锁物业手机号 } ], "currentPage": 1,//当前页 "pageNumber": 10,//页码 "count": 1//总条数 } } <<< error ~~~ ## 电子锁改密 ~~~[api] post:/door_lock/reset *int:id=1#电子锁列表id <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~