using Misc; using System.ComponentModel; namespace FLY.Winder.Common { public class WinderInsideOutside : INotifyPropertyChanged { #region 辅助代码生成 /// /// 收卷实际m /// [Description("收卷实际m")] public float MeasureLen{ get; set; } /// /// 收卷设定m /// [Description("收卷设定m")] public float MeasureLenSet{ get; set; } /// /// 收卷预警m /// [Description("收卷预警m")] public float MeasurePreWarning{ get; set; } /// /// 收卷计量关 /// [Description("收卷计量关")] public bool MeasureStop{ get; set; } /// /// 收卷计量清零(┷) /// [Description("收卷计量清零(┷)")] public bool MeasureReset{ get; set; } /// /// 收卷翻转点动(┷) /// [Description("收卷翻转点动(┷)")] public bool TurnoverInching{ get; set; } /// /// 收卷切膜飞刀(┷) /// [Description("收卷切膜飞刀(┷)")] public bool CuttingFilm{ get; set; } /// /// 收卷翻转原点(┷) /// [Description("收卷翻转原点(┷)")] public bool TurnoverOrg{ get; set; } /// /// 收卷压臂平移(┷) /// [Description("收卷压臂平移(┷)")] public bool PressureArmOffset{ get; set; } /// /// 收卷翻转上位等待(s) /// [Description("收卷翻转上位等待(s)")] public float TurnoverUpperWait{ get; set; } /// /// 收卷翻转原点延时(s) /// [Description("收卷翻转原点延时(s)")] public float TurnoverOrgDelay{ get; set; } /// /// 收卷翻转返回延时(s) /// [Description("收卷翻转返回延时(s)")] public float TurnoverBackDelay{ get; set; } /// /// 收卷锯齿切膜延时(s) /// [Description("收卷锯齿切膜延时(s)")] public float CuttingFilmDelay{ get; set; } /// /// 收卷锯齿切膜时间(s) /// [Description("收卷锯齿切膜时间(s)")] public float CuttingFilmElapsed{ get; set; } /// /// 收卷压臂返回时间(s) /// [Description("收卷压臂返回时间(s)")] public float PressureArmBackElapsed{ get; set; } /// /// 收卷气涨轴检测报警(s) /// [Description("收卷气涨轴检测报警(s)")] public float AirRollerCheck{ get; set; } /// /// 收卷一次平移时间(s) /// [Description("收卷一次平移时间(s)")] public float OffsetElapsed{ get; set; } /// /// 收卷平移停顿时间(s) /// [Description("收卷平移停顿时间(s)")] public float ElapsedWait{ get; set; } /// /// 收卷接料限幅 /// [Description("收卷接料限幅")] public float TapeLimit{ get; set; } /// /// 收卷设定张力(kg) /// [Description("收卷设定张力(kg)")] public float TensionKgSet{ get; set; } /// /// 收卷实际张力(kg) /// [Description("收卷实际张力(kg)")] public float TensionKg{ get; set; } /// /// 收卷电机电流(A) /// [Description("收卷电机电流(A)")] public float Current{ get; set; } /// /// 收卷手动 /// [Description("收卷手动")] public bool IsManual{ get; set; } /// /// 收卷开启显示 /// [Description("收卷开启显示")] public bool IsOn{ get; set; } /// /// 收卷开启设置 /// [Description("收卷开启设置")] public bool IsOnSet{ get; set; } /// /// 收卷张力反馈 /// [Description("收卷张力反馈")] public float Tension{ get; set; } /// /// 收卷张力设定 /// [Description("收卷张力设定")] public float TensionSet{ get; set; } /// /// 收卷增益设定 /// [Description("收卷增益设定")] public float Gain{ get; set; } /// /// 收卷积分时间 /// [Description("收卷积分时间")] public float ITime{ get; set; } /// /// 收卷调节系数 /// [Description("收卷调节系数")] public float Factor{ get; set; } /// /// 收卷辊筒直径 /// [Description("收卷辊筒直径")] public float RollerD{ get; set; } /// /// 收卷传动速比 /// [Description("收卷传动速比")] public float GearRatio{ get; set; } /// /// 收卷PID结果 /// [Description("收卷PID结果")] public float PIDResult{ get; set; } /// /// 收卷PID调节 /// [Description("收卷PID调节")] public float PIDAdjust{ get; set; } /// /// 收卷同步速度 /// [Description("收卷同步速度")] public float SyncV{ get; set; } /// /// 收卷实际速度 /// [Description("收卷实际速度")] public float Velocity{ get; set; } /// /// 收卷升降增益 /// [Description("收卷升降增益")] public float LiftGain{ get; set; } /// /// 收卷速度补偿 /// [Description("收卷速度补偿")] public float VelocityComp{ get; set; } /// /// 收卷变频故障报警!!!请检查 /// [Description("收卷变频故障报警!!!请检查")] [IsError()] public bool IsError_VFD{ get; set; } /// /// 收卷风机过载报警!!!请检查 /// [Description("收卷风机过载报警!!!请检查")] [IsError()] public bool IsError_Fan{ get; set; } /// /// 收翻转刀架过载报警!!!请检查 /// [Description("收翻转刀架过载报警!!!请检查")] [IsError()] public bool IsError_Turnover{ get; set; } /// /// 收卷急停开启!!!请复位 /// [Description("收卷急停开启!!!请复位")] [IsError()] public bool IsError_Scram{ get; set; } /// /// 收卷换卷气涨轴检测未到位报警!!!请检查 /// [Description("收卷换卷气涨轴检测未到位报警!!!请检查")] [IsError()] public bool IsError_AirRollerNoReady{ get; set; } /// /// 收预警长度报警!!!请准备换卷 /// [Description("收预警长度报警!!!请准备换卷")] [IsError()] public bool IsError_MeasurePreWarning{ get; set; } /// /// 收卷换卷提醒报警!!!请注意安全 /// [Description("收卷换卷提醒报警!!!请注意安全")] [IsError()] public bool IsError_ChangeRoll{ get; set; } /// /// 收卸料臂检测报警 /// [Description("收卸料臂检测报警")] [IsError()] public bool IsError_UnloadArm{ get; set; } /// /// 表面变频通讯故障!!!请检查 /// [Description("表面变频通讯故障!!!请检查")] [IsError()] public bool IsError_SurfaceCommErr{ get; set; } #endregion public event PropertyChangedEventHandler PropertyChanged; } }