*
L
2026-04-22 9bd96eb8f9e11fa3ca024b82c718b104a1545f25
src/main/java/com/zy/common/utils/Struct.java
@@ -244,7 +244,7 @@
   
   @SuppressWarnings({ "unchecked", "rawtypes" })
   public static <T extends Struct> T decode(Class<? extends Struct> cls,byte[] bytes) throws Exception{
      Struct instance = cls.newInstance();
      Struct instance = cls.getDeclaredConstructor().newInstance();
      return instance.decode(bytes);
   }