TConfigKeyValue.cs
594 Bytes
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 电量配置
/// </summary>
[Table("t_config_keyvalue")]
public partial class TConfigKeyValue : IdEntity
{
public TConfigKeyValue()
{
}
/// <summary>
/// 关键变量名称
/// </summary>
[Column("KeyVariable")]
public string KeyVariable { get; set; }
/// <summary>
/// 关键名称变量的值
/// </summary>
[Column("Value")]
public string Value { get; set; }
}
}