diff --git a/Service/TBox/Codec/Encoder.cs b/Service/TBox/Codec/Encoder.cs index f0ab00c..7414f71 100644 --- a/Service/TBox/Codec/Encoder.cs +++ b/Service/TBox/Codec/Encoder.cs @@ -21,7 +21,7 @@ public class Encoder : MessageToByteEncoder { byte[] bytes = obj.ToBytes(); byte[] result = - { 0x88, bytes[0], bytes[1], bytes[2], bytes[3], bytes[4], bytes[5], bytes[6], bytes[7], 0, 0, 0, 0 }; + { 0x88, bytes[3], bytes[2], bytes[1], bytes[0], bytes[4], bytes[5], bytes[6], bytes[7], bytes[8], bytes[9], bytes[10], bytes[11] }; Log.Info($"send={BitUtls.BytesToHexStr(result)}"); output.WriteBytes(result);