debug:双模设备录入

This commit is contained in:
墨大叔 2024-09-26 16:27:07 +08:00
parent f045bbbb4d
commit 807c3ef9d3

View File

@ -61,6 +61,6 @@ public enum ModelTag {
public static boolean isTwoMac(List<String> tags) {
// 双模
List<String> towMacTags = asList(FOUR_G, WIFI);
return new HashSet<>(towMacTags).containsAll(tags);
return new HashSet<>(tags).containsAll(towMacTags);
}
}