You've already forked FrameTour-BE
feat(device): 支持按多个景区ID查询设备列表
- 在 DeviceV2Client 中新增 scenicIds 查询参数 - 修改 DeviceIntegrationService.listDevices 方法以支持 scenicIds 参数 - 优化参数优先级逻辑:scenicId 优先于 scenicIds - 更新所有调用点以传递新的 scenicIds 参数 - 保持向后兼容性,确保原有接口行为不变 - 增加日志记录以便调试和监控参数使用情况
This commit is contained in:
@@ -83,7 +83,7 @@ public class DeviceVideoContinuityCheckTask {
|
||||
|
||||
while (true) {
|
||||
PageResponse<DeviceV2DTO> pageResponse = deviceIntegrationService.listDevices(
|
||||
currentPage, pageSize, null, null, null, 1, null
|
||||
currentPage, pageSize, null, null, null, 1, null, null
|
||||
);
|
||||
|
||||
if (pageResponse == null || pageResponse.getList() == null
|
||||
|
||||
Reference in New Issue
Block a user