using System.ComponentModel; namespace XXX.Common { public class WeighterAccessory : INotifyPropertyChanged { public WeighterAccessory() { } #region 辅助代码生成 /// /// 产量设定 /// [Description("产量设定")] public float TotalFlowSetIn{ get; set; } /// /// 产量设定显示 /// [Description("产量设定显示")] public float TotalFlowSetOut{ get; set; } /// /// 当前产量 /// [Description("当前产量")] public float TotalFlow{ get; set; } /// /// 产量设定与运行比例通知(置1) /// [Description("产量设定与运行比例通知(置1)")] public bool TotalFlowSetInIsSet{ get; set; } /// /// 内收卷当前(m) /// [Description("内收卷当前(m)")] public float ACurrentLen{ get; set; } /// /// 内收卷当前(kg) /// [Description("内收卷当前(kg)")] public float ACurrent{ get; set; } /// /// 内收卷上卷(kg) /// [Description("内收卷上卷(kg)")] public float ALast{ get; set; } /// /// 外收卷当前(m) /// [Description("外收卷当前(m)")] public float BCurrentLen{ get; set; } /// /// 外收卷当前(kg) /// [Description("外收卷当前(kg)")] public float BCurrent{ get; set; } /// /// 外收卷上卷(kg) /// [Description("外收卷上卷(kg)")] public float BLast{ get; set; } /// /// 内收卷清零(取反) /// [Description("内收卷清零(取反)")] public bool AClear{ get; set; } /// /// 外收卷清零(取反) /// [Description("外收卷清零(取反)")] public bool BClear{ get; set; } /// /// 报警开关 /// [Description("报警开关")] public bool AlarmIsOn{ get; set; } /// /// 边料kg/h /// [Description("边料kg/h")] public float RimCharge{ get; set; } /// /// 产品厚度um /// [Description("产品厚度um")] public float Thickness{ get; set; } /// /// 当前线速度m/min /// [Description("当前线速度m/min")] public float CurrentVelocity{ get; set; } /// /// 产品宽度(mm) xxx /// [Description("产品宽度(mm) xxx")] public float TotalFilmWidth{ get; set; } /// /// 切边(mm) xxx /// [Description("切边(mm) xxx")] public float RimWidth{ get; set; } /// /// 收卷宽度(mm) xxx /// [Description("收卷宽度(mm) xxx")] public float ActFilmWidth{ get; set; } /// /// 设定厚度(um) xxx.x /// [Description("设定厚度(um) xxx.x")] public float SetThickness{ get; set; } /// /// 理论速度(m/min) xxx.x /// [Description("理论速度(m/min) xxx.x")] public float TargetVelocity{ get; set; } /// /// 边料不回收(取反) /// [Description("边料不回收(取反)")] public bool IsRimNoRecycle{ get; set; } /// /// 码轮周长(mm) /// [Description("码轮周长(mm)")] public float WheelPerimeter{ get; set; } /// /// 码轮脉冲(p/r) /// [Description("码轮脉冲(p/r)")] public float WheelPulse{ get; set; } /// /// 密度(kg/m³) /// [Description("密度(kg/m³)")] public float Density{ get; set; } /// /// 总用料(kg) xxx.x /// [Description("总用料(kg) xxx.x")] public float TotalConsume{ get; set; } /// /// 总用料清零(取反) /// [Description("总用料清零(取反)")] public bool TotalConsumeReset{ get; set; } #endregion public event PropertyChangedEventHandler PropertyChanged; } }