using System; using System.Collections.Generic; namespace SensorHub.Noise { class AccelerationDatas { public static Dictionary<string, string[]> accelerationDataValueMap = new Dictionary<string, string[]>(); // 原始字节数组 public static Dictionary<string, double[]> acclerationValueMap = new Dictionary<string, double[]>(); // double数组 public static Dictionary<string, UInt64> accelerationDataSeqMap = new Dictionary<string, UInt64>(); //分包序列 public static Dictionary<string, UInt32> accelerationDataHighSeqMap = new Dictionary<string, UInt32>(); //分包序列 public static Dictionary<string, UInt32> accelerationDataLowSeqMap = new Dictionary<string, UInt32>(); //分包序列 public static Dictionary<string, bool> accelerationDataFinishMap = new Dictionary<string, bool>(); } }