Tag模型

This commit is contained in:
2024-09-27 17:48:18 +08:00
parent 6bf0d5d7ba
commit 684973e6b7
19 changed files with 7723 additions and 145 deletions

View File

@@ -0,0 +1,53 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Model.PLCParsModel
{
public class PlcParsDataQuick
{
public PlcParsDataQuick()
{
Steps = new List<PlcMeterStepCellQuick>();
Unit = "";
}
/// <summary>
/// 名称
/// </summary>
public string? Name { get; set; }
/// <summary>
/// Model 名称/英文名称
/// </summary>
public string? EnName { get; set; }
/// <summary>
/// 单位
/// </summary>
public string? Unit { get; set; }
/// <summary>
/// 分辨率
/// </summary>
public int? Ratio { get; set; }
/// <summary>
/// 步骤集合信息
/// </summary>
public List<PlcMeterStepCellQuick> Steps { get; set; }
/// <summary>
/// 值首地址
/// </summary>
public int ValueStartAddress { get; set; }
/// <summary>
/// 步长
/// </summary>
public int Step { get; set; } = 100;
}
}