using IModel; using Shaker.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Shaker.Models { public sealed class ShakerChannelConfigModel : BaseModel { /// /// 位移通道 /// public List Displacement = new List(); /// /// 加速度通道 /// public List Acceleration = new List(); /// /// 外部输入通道 /// public List OutSignal = new List(); /// /// 压差通道 /// public List DifferentialPressure = new List(); /// /// 支撑压力通道 /// public List Pressure = new List(); /// /// 水平缸通道 /// public List Horizontal = new List(); /// /// 垂直缸通道 /// public List Vertical = new List(); /// /// 平衡缸通道 /// public List Balancing = new List(); /// /// 结果通道 /// public List ResultChannels = new List(); public override object Clone() { return this.CloneBase(); } } }