You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
997 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Model.ExcelModel
{
/// <summary>
///关键数据管理
/// </summary>
[Serializable]
public class KeyDataDefine
{
[Column("Keydata_name")]
[DisplayName("关键数据名称")]
public string KeydataName { get; set; }
[Column("keydata_desc")]
[DisplayName("关键数据描述")]
public string KeydataDesc { get; set; }
[Column("max_value")]
[DisplayName("最大值")]
public string MaxValue { get; set; }
[Column("min_value")]
[DisplayName("最小值")]
public string MinValue { get; set; }
[Column("max_tolerance")]
[DisplayName("最大值容差")]
public string MaxTolerance { get; set; }
[Column("min_tolerance")]
[DisplayName("最小值容差")]
public string MinTolerance { get; set; }
}
}