Skip to content

Conversation

@yanglegetuo
Copy link

微信小程序新增设备组相关接口

Copy link

Copilot AI left a 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 功能

* 组最大设备数量
*/
@SerializedName("max_device_count")
private String maxDeviceCount;
Copy link

Copilot AI Dec 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WxMaIotGroupDeviceInfoResponse 类中 maxDeviceCount 字段的类型应该是 Integer 或 int,而不是 String。设备数量通常应该用数值类型表示,使用 String 类型可能导致后续的数值计算或比较操作不便。

Suggested change
private String maxDeviceCount;
private Integer maxDeviceCount;

Copilot uses AI. Check for mistakes.
request.setModelId("11111");
request.setGroupName("测试设备组");
String groupId = this.wxService.getDeviceSubscribeService().createIotGroupId(request);
System.out.println(groupId);
Copy link

Copilot AI Dec 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

测试方法使用 System.out.println 进行输出不符合测试最佳实践。应该使用断言(assertions)来验证返回结果是否符合预期,或者使用日志框架记录调试信息。

Copilot uses AI. Check for mistakes.
WxMaGetIotGroupInfoRequest request = new WxMaGetIotGroupInfoRequest();
request.setGroupId("12313123");
WxMaIotGroupDeviceInfoResponse response = this.wxService.getDeviceSubscribeService().getIotGroupInfo(request);
System.out.println(response.toString());
Copy link

Copilot AI Dec 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

测试方法使用 System.out.println 进行输出不符合测试最佳实践。应该使用断言(assertions)来验证返回结果是否符合预期,或者使用日志框架记录调试信息。

Copilot uses AI. Check for mistakes.
request.setDeviceList(Collections.singletonList(deviceTicketRequest));
request.setForceAdd(true);
List<WxMaDeviceTicketRequest> response = this.wxService.getDeviceSubscribeService().addIotGroupDevice(request);
System.out.println(response.toString());
Copy link

Copilot AI Dec 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

测试方法使用 System.out.println 进行输出不符合测试最佳实践。应该使用断言(assertions)来验证返回结果是否符合预期,或者使用日志框架记录调试信息。

Copilot uses AI. Check for mistakes.
/**
* <pre>
* 设备组删除设备
* 一个设备组最多添加 50 个设备。 一个设备同一时间只能被添加到一个设备组中。
Copy link

Copilot AI Dec 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

文档注释不准确。在 removeIotGroupDevice 方法的注释中提到"一个设备组最多添加 50 个设备",这个描述应该是针对添加设备的限制,而不是删除设备。建议修改为更适合删除操作的描述,或者删除这句话。

Suggested change
* 一个设备组最多添加 50 个设备。 一个设备同一时间只能被添加到一个设备组中。

Copilot uses AI. Check for mistakes.
binarywang and others added 2 commits December 23, 2025 13:13
…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>
@binarywang
Copy link
Owner

请楼主针对PR建议做出调整,如果不需要,请忽略即可

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants