java110
2020-06-11 b54e50589efdec9ed3914b1e70e7229b2733d3cf
加入接口清单
2个文件已修改
348 ■■■■■ 已修改文件
docs/document/_sidebar.md 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
docs/document/api/Readme.md 345 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
docs/document/_sidebar.md
@@ -7,8 +7,9 @@
  * [功能列表](func/funcation.md)
  * [常见问题](start/question.md)
* Api开放接口
* 接口能力
  * [接口清单](api/Readme.md)
  * [用户类接口](api/user/index.md)
  * [游客登记](api/user/saveVisit.md)
  * [访客登记变更](api/user/updateVisit.md)
docs/document/api/Readme.md
@@ -1,8 +1,341 @@
### 变更历史
版本|变更内容|变更时间|变更人员
:-: | :-: | :-: | :-:
v0.01|初稿|2018-11-24|wuxw
## 说明
### 用户相关接口
我们只梳理了比较重要的接口协议,他如果需要请自行查看代码梳理协议
#### [用户注册](user/register.md)
## 接口清单
接口名称|调用地址|调用方式
:-: | :-: | :-:
用户信息查询|https://hc.demo.winqi.cn/app/query.user.userInfo|GET
订单信息|https://hc.demo.winqi.cn/app/query.order.orderInfo|GET
查询菜单|https://hc.demo.winqi.cn/app/query.menu.info|GET
查询用户登录信息|https://hc.demo.winqi.cn/app/query.user.loginInfo|GET
查询模板信息|https://hc.demo.winqi.cn/app/query.console.template|GET
查询列模板信息|https://hc.demo.winqi.cn/app/query.console.templateCol|GET
查询映射数据|https://hc.demo.winqi.cn/app/query.center.mapping|GET
查询外部应用|https://hc.demo.winqi.cn/app/query.center.apps|GET
查询服务|https://hc.demo.winqi.cn/app/query.center.services|GET
查询路由|https://hc.demo.winqi.cn/app/query.center.routes|GET
CenterService缓存|https://hc.demo.winqi.cn/app/flush.center.cache|GET
查询所有缓存|https://hc.demo.winqi.cn/app/query.console.caches|GET
查询所有缓存|https://hc.demo.winqi.cn/app/query.console.cache|GET
保存商户信息|https://hc.demo.winqi.cn/app/save.store.info|POST
用户注册|https://hc.demo.winqi.cn/app/user.service.register|POST
用户登录|https://hc.demo.winqi.cn/app/user.service.login|
添加员工|https://hc.demo.winqi.cn/app/user.staff.add|POST
停用员工|https://hc.demo.winqi.cn/app/user.staff.disable|POST
启用员工|https://hc.demo.winqi.cn/app/user.staff.enable|POST
查询员工信息|https://hc.demo.winqi.cn/app/query.staff.infos|GET
搜索员工信息|https://hc.demo.winqi.cn/app/search.staff.infos|GET
查询小区信息|https://hc.demo.winqi.cn/app/query.community.infos|GET
搜索小区|https://hc.demo.winqi.cn/app/search.community.infos|GET
小区成员加入|https://hc.demo.winqi.cn/app/member.join.community|POST
小区成员退出|https://hc.demo.winqi.cn/app/member.quit.community|POST
检查员工是否有物业信息|https://hc.demo.winqi.cn/app/check.property.staffHasProperty|GET
查询物业信息|https://hc.demo.winqi.cn/app/query.property.info|GET
通过用户ID查询参与组织信息|https://hc.demo.winqi.cn/app/query.store.byuser|GET
判断是否存在用户名或手机号的用户|https://hc.demo.winqi.cn/app/check.hasUser.byNameOrTel|GET
查询商户类型|https://hc.demo.winqi.cn/app/query.store.type|GET
查询用户权限|https://hc.demo.winqi.cn/app/query.user.privilege|GET
保存用户默认权限|https://hc.demo.winqi.cn/app/save.user.defaultPrivilege|POST
查询商户员工|https://hc.demo.winqi.cn/app/query.store.users|GET
修改员工信息|https://hc.demo.winqi.cn/app/user.staff.modify|POST
删除员工信息|https://hc.demo.winqi.cn/app/user.staff.delete|POST
删除用户所有权限|https://hc.demo.winqi.cn/app/delete.user.allPrivilege|POST
查询商户权限组|https://hc.demo.winqi.cn/app/query.store.privilegeGroup|GET
根据权限组ID查询权限|https://hc.demo.winqi.cn/app/query.privilege.byPgId|GET
保存权限组信息|https://hc.demo.winqi.cn/app/save.privilegeGroup.info|POST
删除权限组信息|https://hc.demo.winqi.cn/app/delete.privilegeGroup.info|POST
查询权限组中未添加的权限|https://hc.demo.winqi.cn/app/query.privilegeGroup.noAddPrivilege|GET
权限组中添加权限|https://hc.demo.winqi.cn/app/add.privilege.PrivilegeGroup|POST
从权限组中删除权限|https://hc.demo.winqi.cn/app/delete.privilege.PrivilegeGroup|POST
根据名称查询用户|https://hc.demo.winqi.cn/app/query.user.byName|GET
根据商户名称查询商户员工|https://hc.demo.winqi.cn/app/query.staff.byName|GET
查询用户是否是商户员工|https://hc.demo.winqi.cn/app/query.storeUser.byUserIds|GET
员工未添加的权限组|https://hc.demo.winqi.cn/app/query.privilegeGroup.noAddPrivilegeGroup|GET
查询没有给员工赋权限|https://hc.demo.winqi.cn/app/query.privilege.noAddPrivilege|GET
添加用户权限|https://hc.demo.winqi.cn/app/add.privilege.userPrivilege|POST
删除用户权限|https://hc.demo.winqi.cn/app/delete.privilege.userPrivilege|POST
查询商户入驻小区信息|https://hc.demo.winqi.cn/app/query.myCommunity.byMember|GET
查询未入驻的小区|https://hc.demo.winqi.cn/app/query.noEnterCommunity.byMember|GET
检查用户是否有权限|https://hc.demo.winqi.cn/app/check.user.hasPrivilege|GET
根据小区名称查询未入驻小区|https://hc.demo.winqi.cn/app/query.noEnterCommunity.byMemberAndName|GET
查询小区楼信息|https://hc.demo.winqi.cn/app/floor.queryFloors|GET
添加小区楼信息|https://hc.demo.winqi.cn/app/floor.saveFloor|POST
编辑小区楼信息|https://hc.demo.winqi.cn/app/floor.editFloor|POST
删除小区楼信息|https://hc.demo.winqi.cn/app/floor.deleteFloor|POST
查询小区单元信息|https://hc.demo.winqi.cn/app/unit.queryUnits|GET
添加小区楼单元|https://hc.demo.winqi.cn/app/unit.saveUnit|POST
修改小区单元信息|https://hc.demo.winqi.cn/app/unit.updateUnit|POST
删除小区单元信息|https://hc.demo.winqi.cn/app/unit.deleteUnit|POST
添加房屋|https://hc.demo.winqi.cn/app/room.saveRoom|POST
查询房屋信息|https://hc.demo.winqi.cn/app/room.queryRooms|GET
修改房屋信息|https://hc.demo.winqi.cn/app/room.updateRoom|POST
删除房屋信息|https://hc.demo.winqi.cn/app/room.deleteRoom|POST
查询业主|https://hc.demo.winqi.cn/app/owner.queryOwners|POST
保存业主信息|https://hc.demo.winqi.cn/app/owner.saveOwner|POST
编辑业主信息|https://hc.demo.winqi.cn/app/owner.editOwner|POST
删除业主信息|https://hc.demo.winqi.cn/app/owner.deleteOwner|POST
业主成员信息|https://hc.demo.winqi.cn/app/owner.queryOwnerMembers|GET
查询未销售的房屋信息|https://hc.demo.winqi.cn/app/room.queryRoomsWithOutSell|POST
房屋售卖|https://hc.demo.winqi.cn/app/room.sellRoom|POST
查询业主房屋|https://hc.demo.winqi.cn/app/room.queryRoomsByOwner|POST
退房|https://hc.demo.winqi.cn/app/room.exitRoom|POST
查询费用配置|https://hc.demo.winqi.cn/app/feeConfig.listFeeConfigs|GET
保存费用配置|https://hc.demo.winqi.cn/app/feeConfig.saveFeeConfig|POST
修改费用配置|https://hc.demo.winqi.cn/app/feeConfig.updateFeeConfig|POST
查询已销售的房屋信息|https://hc.demo.winqi.cn/app/room.queryRoomsWithSell|GET
查询费用|https://hc.demo.winqi.cn/app/fee.queryFee|GET
查询费用明细|https://hc.demo.winqi.cn/app/fee.queryFeeDetail|GET
缴费|https://hc.demo.winqi.cn/app/fee.payFee|POST
查询车位|https://hc.demo.winqi.cn/app/parkingSpace.queryParkingSpaces|GET
保存车位信息|https://hc.demo.winqi.cn/app/parkingSpace.saveParkingSpace|POST
编辑车位信息|https://hc.demo.winqi.cn/app/parkingSpace.editParkingSpace|POST
删除车位信息|https://hc.demo.winqi.cn/app/parkingSpace.deleteParkingSpace|POST
车位出售|https://hc.demo.winqi.cn/app/parkingSpace.sellParkingSpace|POST
查询业主车位|https://hc.demo.winqi.cn/app/parkingSpace.queryParkingSpacesByOwner|GET
停车位退款|https://hc.demo.winqi.cn/app/parkingSpace.exitParkingSpace|POST
根据停车位查询费用|https://hc.demo.winqi.cn/app/fee.queryFeeByParkingSpace|POST
查询首页统计信息|https://hc.demo.winqi.cn/app/index.queryIndexStatistic|GET
查询欠费费用|https://hc.demo.winqi.cn/app/fee.queryArrearsFee|GET
DEMO查询|https://hc.demo.winqi.cn/app/demo.queryDemoConfig|GET
DEMO新增|https://hc.demo.winqi.cn/app/demo.saveDemoConfig|POST
查询小区|https://hc.demo.winqi.cn/app/community.listCommunitys|POST
添加小区|https://hc.demo.winqi.cn/app/community.saveCommunity|POST
更新小区|https://hc.demo.winqi.cn/app/community.updateCommunity|POST
删除小区|https://hc.demo.winqi.cn/app/community.deleteCommunity|POST
查询通知|https://hc.demo.winqi.cn/app/notice.listNotices|POST
添加通知|https://hc.demo.winqi.cn/app/notice.saveNotice|POST
更新通知|https://hc.demo.winqi.cn/app/notice.updateNotice|POST
删除通知|https://hc.demo.winqi.cn/app/notice.deleteNotice|POST
查询应用|https://hc.demo.winqi.cn/app/app.listApps|GET
添加应用|https://hc.demo.winqi.cn/app/app.saveApp|POST
更新应用|https://hc.demo.winqi.cn/app/app.updateApp|POST
删除应用|https://hc.demo.winqi.cn/app/app.deleteApp|POST
查询服务|https://hc.demo.winqi.cn/app/service.listServices|GET
添加服务|https://hc.demo.winqi.cn/app/service.saveService|POST
更新服务|https://hc.demo.winqi.cn/app/service.updateService|POST
删除服务|https://hc.demo.winqi.cn/app/service.deleteService|POST
xx.wuxw|https://hc.demo.winqi.cn/app/xx.wuxw|GET
服务类型查询|https://hc.demo.winqi.cn/app/business.queryBusinessTypeConfig|GET
添加映射|https://hc.demo.winqi.cn/app/mapping.saveMapping|POST
更新映射|https://hc.demo.winqi.cn/app/mapping.updateMapping|POST
删除映射|https://hc.demo.winqi.cn/app/mapping.deleteMapping|POST
查询映射|https://hc.demo.winqi.cn/app/mapping.listMappings|GET
绑定服务|https://hc.demo.winqi.cn/app/service.bindingService|POST
添加房屋|https://hc.demo.winqi.cn/app/room.addRoomBinding|POST
查询服务注册|https://hc.demo.winqi.cn/app/serviceRegister.listServiceRegisters|GET
编辑服务注册|https://hc.demo.winqi.cn/app/serviceRegister.updateServiceRegister|POST
删除服务注册|https://hc.demo.winqi.cn/app/serviceRegister.deleteServiceRegister|POST
添加服务实现|https://hc.demo.winqi.cn/app/serviceImpl.saveServiceImpl|POST
编辑服务实现|https://hc.demo.winqi.cn/app/serviceImpl.updateServiceImpl|POST
删除服务实现|https://hc.demo.winqi.cn/app/serviceImpl.deleteServiceImpl|POST
查询服务实现|https://hc.demo.winqi.cn/app/serviceImpl.listServiceImpls|GET
查询菜单组|https://hc.demo.winqi.cn/app/menuGroup.listMenuGroups|GET
添加菜单组|https://hc.demo.winqi.cn/app/menuGroup.saveMenuGroup|POST
编辑菜单组|https://hc.demo.winqi.cn/app/menuGroup.updateMenuGroup|POST
删除权限组|https://hc.demo.winqi.cn/app/menuGroup.deleteMenuGroup|POST
添加基础权限|https://hc.demo.winqi.cn/app/basePrivilege.saveBasePrivilege|POST
编辑基础权限|https://hc.demo.winqi.cn/app/basePrivilege.updateBasePrivilege|POST
删除基础权限|https://hc.demo.winqi.cn/app/basePrivilege.deleteBasePrivilege|POST
查询基础权限|https://hc.demo.winqi.cn/app/basePrivilege.listBasePrivileges|GET
访客记录查询|https://hc.demo.winqi.cn/app/visit.listVisits|GET
查询菜单|https://hc.demo.winqi.cn/app/menu.listMenus|GET
修改菜单信息|https://hc.demo.winqi.cn/app/menu.updateMenu|POST
删除菜单|https://hc.demo.winqi.cn/app/menu.deleteMenu|POST
配置菜单|https://hc.demo.winqi.cn/app/menu.configMenu|POST
开发服务提供|https://hc.demo.winqi.cn/app/serviceProvide.saveServiceProvide|POST
删除服务提供|https://hc.demo.winqi.cn/app/serviceProvide.deleteServiceProvide|POST
编辑服务提供|https://hc.demo.winqi.cn/app/serviceProvide.updateServiceProvide|POST
查询服务提供|https://hc.demo.winqi.cn/app/serviceProvide.listServiceProvides|GET
查询通知列表|https://hc.demo.winqi.cn/app/api.queryNotices|GET
查询通知(java)|https://hc.demo.winqi.cn/app/api.getNoticesByJava|GET
访客登记|https://hc.demo.winqi.cn/app/visit.saveVisit|POST
访客登记变更|https://hc.demo.winqi.cn/app/visit.updateVisit|POST
小区审核|https://hc.demo.winqi.cn/app/community.auditCommunity|POST
查询未审核入驻小区|https://hc.demo.winqi.cn/app/community.listAuditEnterCommunitys|GET
审核入驻小区状态|https://hc.demo.winqi.cn/app/community.auditEnterCommunity|POST
查询文件|https://hc.demo.winqi.cn/app/file.getFile|GET
保存文件信息|https://hc.demo.winqi.cn/app/file.saveFile|POST
LawJava110|https://hc.demo.winqi.cn/app/file.getFiletwo|GET
查询保修信息|https://hc.demo.winqi.cn/app/ownerRepair.listOwnerRepairs|POST
保修登记|https://hc.demo.winqi.cn/app/ownerRepair.saveOwnerRepair|POST
修改保修信息|https://hc.demo.winqi.cn/app/ownerRepair.updateOwnerRepair|POST
删除保修信息|https://hc.demo.winqi.cn/app/ownerRepair.deleteOwnerRepair|POST
保存组织|https://hc.demo.winqi.cn/app/org.saveOrg|POST
删除组织|https://hc.demo.winqi.cn/app/org.deleteOrg|POST
编辑组织|https://hc.demo.winqi.cn/app/org.updateOrg|POST
查询组织|https://hc.demo.winqi.cn/app/org.listOrgs|GET
查询上级组织|https://hc.demo.winqi.cn/app/org.listParentOrgs|GET
派单服务|https://hc.demo.winqi.cn/app/130200030001|POST
派单撤回|https://hc.demo.winqi.cn/app/130200050001|POST
报修派单|https://hc.demo.winqi.cn/app/ownerRepair.repairDispatchStep|POST
报修结单|https://hc.demo.winqi.cn/app/ownerRepair.closeRepairDispatch|POST
保存资源|https://hc.demo.winqi.cn/app/resourceStore.saveResourceStore|POST
删除资源|https://hc.demo.winqi.cn/app/resourceStore.deleteResourceStore|POST
编辑资源|https://hc.demo.winqi.cn/app/resourceStore.updateResourceStore|POST
查询资源|https://hc.demo.winqi.cn/app/resourceStore.listResourceStores|GET
添加审核人员|https://hc.demo.winqi.cn/app/auditUser.saveAuditUser|POST
删除审核人员|https://hc.demo.winqi.cn/app/auditUser.deleteAuditUser|POST
查询审核人员|https://hc.demo.winqi.cn/app/auditUser.listAuditUsers|GET
查询审核工单|https://hc.demo.winqi.cn/app/auditUser.listAuditOrders|GET
物业费缴费清单|https://hc.demo.winqi.cn/app/api.getPropertyPayFee|GET
查询字典|https://hc.demo.winqi.cn/app/dict.queryDict|GET
停车费缴费清单|https://hc.demo.winqi.cn/app/api.getParkingSpacePayFee|GET
登记投诉建议|https://hc.demo.winqi.cn/app/complaint.saveComplaint|POST
修改投诉建议|https://hc.demo.winqi.cn/app/complaint.updateComplaint|POST
删除投诉建议|https://hc.demo.winqi.cn/app/complaint.deleteComplaint|POST
查询投诉建议|https://hc.demo.winqi.cn/app/complaint.listComplaints|GET
员工收取的费用|https://hc.demo.winqi.cn/app/api.getStaffFee|GET
查询审核投诉单|https://hc.demo.winqi.cn/app/auditUser.listAuditComplaints|GET
处理投诉|https://hc.demo.winqi.cn/app/complaint.auditComplaint|POST
查询历史投诉单|https://hc.demo.winqi.cn/app/auditUser.listAuditHistoryComplaints|GET
添加设备|https://hc.demo.winqi.cn/app/machine.saveMachine|POST
修改设备|https://hc.demo.winqi.cn/app/machine.updateMachine|POST
删除设备|https://hc.demo.winqi.cn/app/machine.deleteMachine|POST
查询设备|https://hc.demo.winqi.cn/app/machine.listMachines|GET
添加设备同步|https://hc.demo.winqi.cn/app/machineTranslate.saveMachineTranslate|POST
删除设备同步|https://hc.demo.winqi.cn/app/machineTranslate.deleteMachineTranslate|POST
编辑设备同步|https://hc.demo.winqi.cn/app/machineTranslate.updateMachineTranslate|POST
查询设备同步|https://hc.demo.winqi.cn/app/machineTranslate.listMachineTranslates|POST
设备心跳服务|https://hc.demo.winqi.cn/app/machineTranslate.machineHeartbeart|POST
根据对象ID查询文件信息|https://hc.demo.winqi.cn/app/file.getFileByObjId|GET
设备查询用户信息|https://hc.demo.winqi.cn/app/machineTranslate.machineQueryUserInfo|POST
上传刷脸记录|https://hc.demo.winqi.cn/app/machineTranslate.machineUploadFaceLog|POST
设备命令执行反馈|https://hc.demo.winqi.cn/app/machineTranslate.machineCmdResult|POST
用户信息查询|https://hc.demo.winqi.cn/app/user.listUsers|GET
查询地区|https://hc.demo.winqi.cn/app/area.listAreas|GET
查询开门记录|https://hc.demo.winqi.cn/app/machineRecord.listMachineRecords|GET
添加开门记录|https://hc.demo.winqi.cn/app/machineRecord.saveMachineRecord|POST
修改设备状态|https://hc.demo.winqi.cn/app/machine.updateMachineState|POST
添加钥匙申请|https://hc.demo.winqi.cn/app/applicationKey.saveApplicationKey|POST
编辑钥匙申请|https://hc.demo.winqi.cn/app/applicationKey.updateApplicationKey|POST
删除钥匙申请|https://hc.demo.winqi.cn/app/applicationKey.deleteApplicationKey|POST
查询钥匙申请|https://hc.demo.winqi.cn/app/applicationKey.listApplicationKeys|GET
钥匙审核|https://hc.demo.winqi.cn/app/applicationKey.auditApplicationKey|POST
查询消息|https://hc.demo.winqi.cn/app/msg.listMsgs|GET
检查用户是否资源权限|https://hc.demo.winqi.cn/app/basePrivilege.CheckUserHasResourceListener|POST
查询消息|https://hc.demo.winqi.cn/app/msg.listMsg|GET
阅读消息|https://hc.demo.winqi.cn/app/msg.readMsg|POST
发布广告|https://hc.demo.winqi.cn/app/advert.saveAdvert|POST
修改广告|https://hc.demo.winqi.cn/app/advert.updateAdvert|POST
删除广告|https://hc.demo.winqi.cn/app/advert.deleteAdvert|POST
查询广告|https://hc.demo.winqi.cn/app/advert.listAdverts|GET
查询广告项|https://hc.demo.winqi.cn/app/advert.listAdvertItems|GET
查询广告图片视频|https://hc.demo.winqi.cn/app/advert.listAdvertPhotoAndVedios|GET
查询入驻并且有权限的小区|https://hc.demo.winqi.cn/app/community.listMyEnteredCommunitys|GET
app用户绑定业主|https://hc.demo.winqi.cn/app/owner.appUserBindingOwner|POST
查询应用用户绑定业主|https://hc.demo.winqi.cn/app/owner.listAppUserBindingOwners|GET
查询审核绑定业主|https://hc.demo.winqi.cn/app/owner.listAuditAppUserBindingOwners|GET
审核业主绑定|https://hc.demo.winqi.cn/app/owner.updateAppUserBindingOwner|POST
解绑业主|https://hc.demo.winqi.cn/app/owner.deleteAppUserBindingOwner|POST
查询业主门禁|https://hc.demo.winqi.cn/app/owner.listOwnerMachines|GET
手机端申请钥匙|https://hc.demo.winqi.cn/app/applicationKey.applyApplicationKey|POST
申请访客密码|https://hc.demo.winqi.cn/app/applicationKey.applyVisitorApplicationKey|POST
上传业主照片|https://hc.demo.winqi.cn/app/owner.uploadOwnerPhoto|POST
查询小区商户|https://hc.demo.winqi.cn/app/store.listStoresByCommunity|GET
支付确认通知|https://hc.demo.winqi.cn/app/fee.payFeeConfirm|POST
预下单|https://hc.demo.winqi.cn/app/fee.payFeePre|POST
保存活动|https://hc.demo.winqi.cn/app/activities.saveActivities|POST
查询活动|https://hc.demo.winqi.cn/app/activities.listActivitiess|GET
修改活动|https://hc.demo.winqi.cn/app/activities.updateActivities|POST
删除活动|https://hc.demo.winqi.cn/app/activities.deleteActivities|POST
查询小区广告图片|https://hc.demo.winqi.cn/app/advert.listAdvertPhoto|GET
添加停车场|https://hc.demo.winqi.cn/app/parkingArea.saveParkingArea|POST
修改停车场|https://hc.demo.winqi.cn/app/parkingArea.updateParkingArea|POST
删除停车场|https://hc.demo.winqi.cn/app/parkingArea.deleteParkingArea|POST
查询停车场|https://hc.demo.winqi.cn/app/parkingArea.listParkingAreas|GET
保存黑白名单|https://hc.demo.winqi.cn/app/carBlackWhite.saveCarBlackWhite|POST
修改黑白名单|https://hc.demo.winqi.cn/app/carBlackWhite.updateCarBlackWhite|POST
删除黑白名单|https://hc.demo.winqi.cn/app/carBlackWhite.deleteCarBlackWhite|POST
查询黑白名单|https://hc.demo.winqi.cn/app/carBlackWhite.listCarBlackWhites|GET
添加进出场|https://hc.demo.winqi.cn/app/carInout.saveCarInout|POST
查询进场记录|https://hc.demo.winqi.cn/app/carInout.listCarInouts|GET
车辆道闸开门|https://hc.demo.winqi.cn/app/machineTranslate.machineRoadGateOpen|POST
查询临时车费用|https://hc.demo.winqi.cn/app/fee.queryFeeByCarInout|GET
临时车预交费|https://hc.demo.winqi.cn/app/fee.payFeePreTempCarInout|POST
临时车缴费清单|https://hc.demo.winqi.cn/app/api.getTempCarInoutFee|GET
查询空闲车位数|https://hc.demo.winqi.cn/app/machineTranslate.machineGetFreeParkingSpace|GET
删除费用项|https://hc.demo.winqi.cn/app/feeConfig.deleteFeeConfig|POST
查询设置费用的房屋|https://hc.demo.winqi.cn/app/fee.listRoomsWhereFeeSet|GET
查询费用|https://hc.demo.winqi.cn/app/fee.listFee|GET
删除费用|https://hc.demo.winqi.cn/app/fee.deleteFee|POST
查询设置费用车位|https://hc.demo.winqi.cn/app/fee.listParkingSpacesWhereFeeSet|GET
缴费汇总查询|https://hc.demo.winqi.cn/app/api.queryFeeSummary|GET
修改员工密码|https://hc.demo.winqi.cn/app/user.changeStaffPwd|POST
重置员工密码|https://hc.demo.winqi.cn/app/user.resetStaffPwd|POST
发送短信验证码|https://hc.demo.winqi.cn/app/user.userSendSms|POST
保存巡检点|https://hc.demo.winqi.cn/app/inspectionPoint.saveInspectionPoint|POST
删除巡检点|https://hc.demo.winqi.cn/app/inspectionPoint.deleteInspectionPoint|POST
查询巡检点|https://hc.demo.winqi.cn/app/inspectionPoint.listInspectionPoints|GET
编辑巡检点|https://hc.demo.winqi.cn/app/inspectionPoint.updateInspectionPoint|POST
保存巡检路线|https://hc.demo.winqi.cn/app/inspectionRoute.saveInspectionRoute|POST
修改巡检路线|https://hc.demo.winqi.cn/app/inspectionRoute.updateInspectionRoute|POST
删除巡检路线|https://hc.demo.winqi.cn/app/inspectionRoute.deleteInspectionRoute|POST
查询巡检路线|https://hc.demo.winqi.cn/app/inspectionRoute.listInspectionRoutes|GET
查询组织还未入驻小区|https://hc.demo.winqi.cn/app/org.listOrgNoCommunitys|GET
编辑权限组|https://hc.demo.winqi.cn/app/edit.privilegeGroup.info|POST
添加隶属小区|https://hc.demo.winqi.cn/app/org.saveOrgCommunity|POST
删除隶属小区|https://hc.demo.winqi.cn/app/org.deleteOrgCommunity|POST
查询组织隶属小区|https://hc.demo.winqi.cn/app/org.listOrgCommunitys|POST
保存巡检计划|https://hc.demo.winqi.cn/app/inspectionPlan.saveInspectionPlan|POST
删除巡检计划|https://hc.demo.winqi.cn/app/inspectionPlan.deleteInspectionPlan|POST
编辑巡检计划|https://hc.demo.winqi.cn/app/inspectionPlan.updateInspectionPlan|POST
查询巡检计划|https://hc.demo.winqi.cn/app/inspectionPlan.listInspectionPlans|GET
查询商户|https://hc.demo.winqi.cn/app/store.listStores|GET
房屋创建费用|https://hc.demo.winqi.cn/app/fee.saveRoomCreateFee|POST
车位创建费用|https://hc.demo.winqi.cn/app/fee.saveParkingSpaceCreateFee|POST
修改巡检计划状态|https://hc.demo.winqi.cn/app/inspectionPlan.updateInspectionPlanState|POST
保存巡检任务|https://hc.demo.winqi.cn/app/inspectionTask.saveInspectionTask|POST
删除巡检任务|https://hc.demo.winqi.cn/app/inspectionTask.deleteInspectionTask|POST
修改巡检任务|https://hc.demo.winqi.cn/app/inspectionTask.updateInspectionTask|POST
查询巡检任务|https://hc.demo.winqi.cn/app/inspectionTask.listInspectionTasks|GET
保存采购申请|https://hc.demo.winqi.cn/app/purchaseApply.savePurchaseApply|POST
删除采购申请|https://hc.demo.winqi.cn/app/purchaseApply.deletePurchaseApply|POST
编辑采购申请|https://hc.demo.winqi.cn/app/purchaseApply.updatePurchaseApply|POST
查询采购申请|https://hc.demo.winqi.cn/app/purchaseApply.listPurchaseApplys|GET
查询订单信息|https://hc.demo.winqi.cn/app/corders.listCorders|GET
查询巡检路线点|https://hc.demo.winqi.cn/app/inspectionRoute.listInspectionRoutePoints|GET
保存线路巡检点关系|https://hc.demo.winqi.cn/app/inspectionRoute.saveInspectionRoutePoint|POST
删除巡检线路下巡检点|https://hc.demo.winqi.cn/app/inspectionRoute.deleteInspectionRoutePoint|POST
查询巡检任务明细|https://hc.demo.winqi.cn/app/inspectionTaskDetail.listInspectionTaskDetails|GET
业主注册|https://hc.demo.winqi.cn/app/owner.ownerRegister|POST
添加旧货市场|https://hc.demo.winqi.cn/app/junkRequirement.saveJunkRequirement|POST
修改旧货市场|https://hc.demo.winqi.cn/app/junkRequirement.updateJunkRequirement|POST
删除旧货市场|https://hc.demo.winqi.cn/app/junkRequirement.deleteJunkRequirement|POST
查询旧货市场|https://hc.demo.winqi.cn/app/junkRequirement.listJunkRequirements|GET
保存商品规格|https://hc.demo.winqi.cn/app/productDoodsDetail.saveProductDoodsDetail|POST
修改商品规格|https://hc.demo.winqi.cn/app/productDoodsDetail.updateProductDoodsDetail|POST
删除商品规格|https://hc.demo.winqi.cn/app/productDoodsDetail.deleteProductDoodsDetail|POST
查询商品规格信息|https://hc.demo.winqi.cn/app/productDoodsDetail.listProductDoodsDetails|GET
修改商户信息|https://hc.demo.winqi.cn/app/update.store.info|POST
修改商户属性信息|https://hc.demo.winqi.cn/app/storeAttr.updateStoreAttr|POST
修改巡检任务明细|https://hc.demo.winqi.cn/app/inspectionTaskDetail.updateInspectionTaskDetail|POST
保存巡检计划人|https://hc.demo.winqi.cn/app/inspectionPlanStaff.saveInspectionPlanStaff|POST
删除巡检计划人|https://hc.demo.winqi.cn/app/inspectionPlanStaff.deleteInspectionPlanStaff|POST
查询计划巡检人|https://hc.demo.winqi.cn/app/inspectionPlanStaff.listInspectionPlanStaffs|GET
审核采购单|https://hc.demo.winqi.cn/app/purchaseApply.auditApplyOrder|POST
退费申请|https://hc.demo.winqi.cn/app/returnPayFee.saveReturnPayFee|POST
修改退费申请|https://hc.demo.winqi.cn/app/returnPayFee.updateReturnPayFee|POST
删除退费申请|https://hc.demo.winqi.cn/app/returnPayFee.deleteReturnPayFee|POST
退费申请查询|https://hc.demo.winqi.cn/app/returnPayFee.listReturnPayFees|GET
保存小程序配置|https://hc.demo.winqi.cn/app/smallWeChat.saveSmallWeChat|POST
修改小程序配置|https://hc.demo.winqi.cn/app/smallWeChat.updateSmallWeChat|POST
删除小程序配置|https://hc.demo.winqi.cn/app/smallWeChat.deleteSmallWeChat|POST
查询小程序配置|https://hc.demo.winqi.cn/app/smallWeChat.listSmallWeChats|GET
查询账单|https://hc.demo.winqi.cn/app/fee.listBill|GET
添加定时任务|https://hc.demo.winqi.cn/app/task.saveTask|POST
修改定时任务|https://hc.demo.winqi.cn/app/task.updateTask|POST
删除定时任务|https://hc.demo.winqi.cn/app/task.deleteTask|POST
查询定时任务|https://hc.demo.winqi.cn/app/task.listTasks|GET
获取任务模板|https://hc.demo.winqi.cn/app/task.listTaskTemplate|GET
查询模板规格|https://hc.demo.winqi.cn/app/task.listTaskTemplateSpec|GET
启动定时任务|https://hc.demo.winqi.cn/app/task.startTask|POST
停止定时任务|https://hc.demo.winqi.cn/app/task.stopTask|POST
添加小区位置|https://hc.demo.winqi.cn/app/communityLocation.saveCommunityLocation|POST
修改小区位置|https://hc.demo.winqi.cn/app/communityLocation.updateCommunityLocation|POST
删除小区位置|https://hc.demo.winqi.cn/app/communityLocation.deleteCommunityLocation|POST
查询小区位置|https://hc.demo.winqi.cn/app/communityLocation.listCommunityLocations|GET