临时提交

This commit is contained in:
648540858
2024-09-11 17:55:27 +08:00
parent e078360928
commit 36f94593a4
3 changed files with 31 additions and 0 deletions

View File

@@ -77,4 +77,6 @@ public interface IGbChannelService {
CommonGBChannel queryOneWithPlatform(Integer platformId, String channelDeviceId);
void updateCivilCode(String oldCivilCode, String newCivilCode);
List<CommonGBChannel> queryTree(Integer parentId, String parentDeviceId, Boolean showRegion, Boolean showGroup);
}

View File

@@ -675,4 +675,12 @@ public class GbChannelServiceImpl implements IGbChannelService {
}
}
}
@Override
public List<CommonGBChannel> queryTree(Integer parentId, String parentDeviceId, Boolean showRegion, Boolean showGroup) {
if (parentId == null || Objects.isNull(parentDeviceId)) {
// 查询顶级节点
}
return Collections.emptyList();
}
}