using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace FLY.Weight.Common { public class WeighterAccessory:INotifyPropertyChanged { #region 辅助代码生成 /// /// 总流量设定 /// public float TotalFlowSetting { get; set; } /// /// 总流量显示 /// public float TotalFlow { get; set; } /// /// 总产量 /// public float TotalProduction { get; set; } /// /// 码轮周长mm /// public float WheelPerimeter { get; set; } /// /// 码轮脉冲 /// public float WheelPulse { get; set; } /// /// 平均密度 /// public float Density { get; set; } /// /// 边料不回收 /// public bool IsRimNoRecycle { get; set; } /// /// 边料kg/h /// public float RimCharge { get; set; } /// /// 厚度um /// public float Thickness { get; set; } /// /// 当前线速度m/min /// public float CurrentVelocity { get; set; } /// /// 当前线速度设置m/min /// public float CurrentVelocitySet { get; set; } /// /// 吹膜宽度mm /// public float TotalFilmWidth { get; set; } /// /// 切边mm /// public float RimWidth { get; set; } /// /// 收卷宽度mm /// public float ActFilmWidth { get; set; } /// /// 设定厚度um /// public float SetThickness { get; set; } /// /// 理论速度m/min /// public float TargetVelocity { get; set; } /// /// 内收卷当前m /// public float ACurrentLen { get; set; } /// /// 内收卷当前kg /// public float ACurrent { get; set; } /// /// 内收卷上卷kg /// public float ALast { get; set; } /// /// 外收卷当前m /// public float BCurrentLen { get; set; } /// /// 外收卷当前kg /// public float BCurrent { get; set; } /// /// 外收卷上卷kg /// public float BLast { get; set; } /// /// 内收卷清零 /// public bool AClear { get; set; } /// /// 外收卷清零 /// public bool BClear { get; set; } #endregion public event PropertyChangedEventHandler PropertyChanged; } }