using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Shaker.Model { /// /// 模拟通道类型 /// public enum AIChannelType { /// /// 位移 /// [ResultChannelUnit("mm")] Displacement, /// /// 加速度 /// [ResultChannelUnit("g")] Acceleration, /// /// 外部输入 /// [ResultChannelUnit("mm")] OutSignal, /// /// 压差 /// [ResultChannelUnit("MPa")] DifferentialPressure, /// /// 压力 /// [ResultChannelUnit("MPa")] Pressure } }