using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CapMachine.Shared.Controls { public class MeterSlopCell { /// /// 开始值 /// public double StartValue { get; set; } /// /// 结束值 /// public double EndValue { get; set; } /// /// 维持时间 /// public double KeepTime { get; set; } /// /// PIDNo /// public int PIDNo { get; set; } /// /// LimitNo /// public int LimitNo { get; set; } /// /// AlarmNo /// public int AlarmNo { get; set; } } }