This commit is contained in:
2024-09-25 15:44:59 +08:00
parent a76546ebe6
commit 6bf0d5d7ba
72 changed files with 21606 additions and 1608 deletions

View File

@@ -0,0 +1,45 @@
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; }
}
}