临时提交
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user