Files
CapMachine/CapMachine.Shared/Controls/MeterSlopCell.cs
2024-12-18 15:50:21 +08:00

43 lines
916 B
C#

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
{
/// <summary>
/// 开始值
/// </summary>
public double StartValue { get; set; }
/// <summary>
/// 结束值
/// </summary>
public double EndValue { get; set; }
/// <summary>
/// 维持时间
/// </summary>
public double KeepTime { get; set; }
/// <summary>
/// PIDNo
/// </summary>
public int PIDNo { get; set; }
/// <summary>
/// LimitNo
/// </summary>
public int LimitNo { get; set; }
/// <summary>
/// AlarmNo
/// </summary>
public int AlarmNo { get; set; }
}
}