速度的拓展参数对应
This commit is contained in:
30
CapMachine.Wpf/Models/PlcExdConfigCell.cs
Normal file
30
CapMachine.Wpf/Models/PlcExdConfigCell.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// PLC加载配置拓展单元-包括 压缩机使能、吸排气阀、输出锁定等
|
||||
/// 下载PLC数据,用整型的数据下载,但是我们这边可能是浮点数,需要格式的转换,精度的转换
|
||||
/// </summary>
|
||||
public class PlcExdConfigCell
|
||||
{
|
||||
/// <summary>
|
||||
/// 配置字段 名称
|
||||
/// </summary>
|
||||
public string? Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 地址
|
||||
/// </summary>
|
||||
public string? Address { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 精度 1,10,100,1000
|
||||
/// </summary>
|
||||
public int Precision { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user