46 lines
1001 B
C#
46 lines
1001 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Model.MeterConfig
|
|
{
|
|
/// <summary>
|
|
/// 公共部分
|
|
/// </summary>
|
|
public class MeterCom
|
|
{
|
|
/// <summary>
|
|
/// 程序步骤序号
|
|
/// </summary>
|
|
public int StepNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始值
|
|
/// </summary>
|
|
public double StartValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束值
|
|
/// </summary>
|
|
public double EndValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 维持时间
|
|
/// </summary>
|
|
public int KeepTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 配置值类型
|
|
/// </summary>
|
|
public ConfigValueType ValueType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 常值
|
|
/// 在ValueType为常值时会使用
|
|
/// </summary>
|
|
public double Constant { get; set; }
|
|
}
|
|
}
|