更新了Tag的字段属性和Can配置的修复

This commit is contained in:
2025-01-06 10:06:36 +08:00
parent 3a5674054d
commit e5ebd9113a
11 changed files with 166 additions and 54 deletions

View File

@@ -54,7 +54,7 @@ namespace CapMachine.Wpf.Models.Tag
/// <summary>
/// 工程值 Mv
/// </summary>
short EngMvValue { get; set; }
double EngMvValue { get; set; }
/// <summary>
/// 工程值的字符串 Mv

View File

@@ -235,11 +235,11 @@ namespace CapMachine.Wpf.Models.Tag
}
private short _EngMvValue;
private double _EngMvValue;
/// <summary>
/// 工程值 MV
/// </summary>
public short EngMvValue
public double EngMvValue
{
get { return _EngMvValue; }
set