Tag模型
This commit is contained in:
31
CapMachine.Model/PLCParsModel/PlcMeterStepCellQuick.cs
Normal file
31
CapMachine.Model/PLCParsModel/PlcMeterStepCellQuick.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 步骤的PLC数据单元
|
||||
/// </summary>
|
||||
public class PlcMeterStepCellQuick
|
||||
{
|
||||
/// <summary>
|
||||
/// 步骤序号
|
||||
/// 从1开始
|
||||
/// </summary>
|
||||
public int Step { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 值
|
||||
/// </summary>
|
||||
public double? Value { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 地址
|
||||
/// </summary>
|
||||
public string? Address { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user