-
-
Notifications
You must be signed in to change notification settings - Fork 9k
微信小程序新增设备组相关接口 #3818
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
微信小程序新增设备组相关接口 #3818
+329
−9
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
此 PR 为微信小程序 SDK 新增了设备组相关的 API 接口,实现了设备组的创建、查询、设备添加和删除功能。
主要变更内容:
- 新增 4 个设备组管理 API 接口(创建、查询、添加设备、删除设备)
- 添加 4 个请求/响应模型类以支持新接口
- 在 API URL 常量类中定义相关端点
- 完善测试用例以验证新增功能
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
| WxMaDeviceSubscribeService.java | 定义设备组相关的 4 个接口方法签名及文档 |
| WxMaDeviceSubscribeServiceImpl.java | 实现设备组 API 的具体逻辑,包括请求发送和响应解析 |
| WxMaApiUrlConstants.java | 添加 4 个设备组相关的微信 API 端点常量 |
| WxMaCreateIotGroupIdRequest.java | 创建设备组的请求参数模型类 |
| WxMaGetIotGroupInfoRequest.java | 查询设备组信息的请求参数模型类 |
| WxMaIotGroupDeviceRequest.java | 添加/删除设备的请求参数模型类 |
| WxMaIotGroupDeviceInfoResponse.java | 设备组信息查询的响应模型类 |
| WxMaDeviceSubscribeServiceImplTest.java | 新增 4 个测试方法验证设备组 API 功能 |
...-miniapp/src/main/java/cn/binarywang/wx/miniapp/bean/device/WxMaCreateIotGroupIdRequest.java
Outdated
Show resolved
Hide resolved
...iapp/src/test/java/cn/binarywang/wx/miniapp/api/impl/WxMaDeviceSubscribeServiceImplTest.java
Outdated
Show resolved
Hide resolved
...iapp/src/test/java/cn/binarywang/wx/miniapp/api/impl/WxMaDeviceSubscribeServiceImplTest.java
Outdated
Show resolved
Hide resolved
...niapp/src/main/java/cn/binarywang/wx/miniapp/bean/device/WxMaIotGroupDeviceInfoResponse.java
Outdated
Show resolved
Hide resolved
...iapp/src/test/java/cn/binarywang/wx/miniapp/api/impl/WxMaDeviceSubscribeServiceImplTest.java
Outdated
Show resolved
Hide resolved
...iapp/src/test/java/cn/binarywang/wx/miniapp/api/impl/WxMaDeviceSubscribeServiceImplTest.java
Show resolved
Hide resolved
...iapp/src/test/java/cn/binarywang/wx/miniapp/api/impl/WxMaDeviceSubscribeServiceImplTest.java
Outdated
Show resolved
Hide resolved
...iapp/src/test/java/cn/binarywang/wx/miniapp/api/impl/WxMaDeviceSubscribeServiceImplTest.java
Outdated
Show resolved
Hide resolved
weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/api/WxMaDeviceSubscribeService.java
Outdated
Show resolved
Hide resolved
…n/device/WxMaCreateIotGroupIdRequest.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…/impl/WxMaDeviceSubscribeServiceImplTest.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Owner
|
请楼主针对PR建议做出调整,如果不需要,请忽略即可 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
微信小程序新增设备组相关接口