using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Entity { [Serializable] public class TVibrationSensorData { public long? ObjId { get; set; } public string CollectTime { get; set; } public string SensorId { get; set; } public decimal? Speed { get; set; } public decimal? Displacement { get; set; } public decimal? Acceleration { get; set; } public decimal? Temperature { get; set; } public DateTime? RecodeTime { get; set; } public string Remark { get; set; } } }