You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|