using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Model { /// /// 城投恩普特 振动配置 /// public class SmiExpertVibrationConfig { /// /// 采集器IP地址 /// public string InstrumentIp { get; set; } /// /// 采集器类型 /// public string InstrumentType { get; set; } /// /// 传感器类型 /// public int SensorType { get; set; } /// /// 每周期采样点数 /// public int PointLenOfPeriod { get; set; } /// /// 每组数据采样点数 /// public int PointLenOfGroup { get; set; } /// /// 通道放大倍数 /// public double ChMagnification { get; set; } /// /// 通道校准系数 /// public double ChCalParams { get; set; } /// /// 积分系数 /// public double ChCoffParams { get; set; } /// /// 通道积分类型 /// public int ChIntegType { get; set; } /// /// 通道灵敏度 /// public double ChSencivity { get; set; } /// /// 一次积分系数 /// public double ChCoefficient1X { get; set; } /// /// 二次积分系数 /// public double ChCoefficient2X { get; set; } } }