using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace FLY.Weight.Common { public class WeighterAccessory:INotifyPropertyChanged { #region 辅助代码生成 /// /// 总流量设定 /// [Description("总流量设定")] public float TotalFlowSetting{ get; set; } /// /// 总流量显示 /// [Description("总流量显示")] public float TotalFlow{ get; set; } /// /// 总产量 /// [Description("总产量")] public float TotalProduction{ get; set; } /// /// 码轮周长mm /// [Description("码轮周长mm")] public float WheelPerimeter{ get; set; } /// /// 码轮脉冲 /// [Description("码轮脉冲")] public float WheelPulse{ get; set; } /// /// 原料密度kg/m3 #.### /// [Description("原料密度kg/m3 #.###")] public float Density{ get; set; } /// /// 边料不回收 /// [Description("边料不回收")] public bool IsRimNoRecycle{ 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; } /// /// 当前线速度设置m/min /// [Description("当前线速度设置m/min")] public float CurrentVelocitySet{ get; set; } /// /// 吹膜宽度mm /// [Description("吹膜宽度mm")] public float TotalFilmWidth{ get; set; } /// /// 切边mm /// [Description("切边mm")] public float RimWidth{ get; set; } /// /// 收卷宽度mm /// [Description("收卷宽度mm")] public float ActFilmWidth{ get; set; } /// /// 设定厚度um /// [Description("设定厚度um")] public float SetThickness{ get; set; } /// /// 理论速度m/min /// [Description("理论速度m/min")] public float TargetVelocity{ 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; } /// /// 当前厚度um #.# /// [Description("当前厚度um #.#")] public float Thickness4{ get; set; } /// /// 当前速度m/min /// [Description("当前速度m/min")] public float CurrentVelocity4{ get; set; } /// /// 理论速度m/min /// [Description("理论速度m/min")] public float TargetVelocity4{ get; set; } /// /// 总流量设定 kg/h /// [Description("总流量设定 kg/h")] public float TotalFlowSetting4{ get; set; } /// /// 确定(↑) /// [Description("确定(↑)")] public bool IsEnter4{ get; set; } /// /// 同步 /// [Description("同步")] public bool IsSync4{ get; set; } #endregion public event PropertyChangedEventHandler PropertyChanged; } }