Config_KeyValue.cs
705 Bytes
using RCS.Model.Entity.PrimaryKey;
using System.ComponentModel.DataAnnotations.Schema;
namespace RCS.Model.Entity
{
[Table("t_config_keyvalue")]
public class Config_KeyValue : IdEntity
{
/// <summary>
/// 参数变量
/// </summary>
public string KeyVariable { get; set; }
/// <summary>
/// 变量描述
/// </summary>
public string KeyDescribe { get; set; }
/// <summary>
/// 变量值
/// </summary>
public string Value { get; set; }
/// <summary>
/// double类型变量值
/// </summary>
[NotMapped]
public double DoubleValue { get; set; }
}
}