1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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
- {
- /// <summary>
- /// 位移通道
- /// </summary>
- public List<AIConfigModel> Displacement = new List<AIConfigModel>();
- /// <summary>
- /// 加速度通道
- /// </summary>
- public List<AIConfigModel> Acceleration = new List<AIConfigModel>();
- /// <summary>
- /// 外部输入通道
- /// </summary>
- public List<AIConfigModel> OutSignal = new List<AIConfigModel>();
- /// <summary>
- /// 压差通道
- /// </summary>
- public List<AIConfigModel> DifferentialPressure = new List<AIConfigModel>();
- /// <summary>
- /// 支撑压力通道
- /// </summary>
- public List<AIConfigModel> Pressure = new List<AIConfigModel>();
- /// <summary>
- /// 水平缸通道
- /// </summary>
- public List<AOConfigModel> Horizontal = new List<AOConfigModel>();
- /// <summary>
- /// 垂直缸通道
- /// </summary>
- public List<AOConfigModel> Vertical = new List<AOConfigModel>();
- /// <summary>
- /// 平衡缸通道
- /// </summary>
- public List<AOChannel> Balancing = new List<AOChannel>();
- /// <summary>
- /// 结果通道
- /// </summary>
- public List<ResultChannelModel> ResultChannels = new List<ResultChannelModel>();
- public override object Clone()
- {
- return this.CloneBase();
- }
- }
- }
|