using SqlSugar;
namespace ZR.Model.System
{
///
/// 参数配置,数据实体对象
///
/// @author mr.zhao
/// @date 2021-09-29
///
[SugarTable("sys_config")]
[Tenant("0")]
public class SysConfig : SysBase
{
///
/// 配置id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ConfigId { get; set; }
///
/// 参数名称
///
public string ConfigName { get; set; }
///
/// 参数键名
///
public string ConfigKey { get; set; }
///
/// 参数键值
///
public string ConfigValue { get; set; }
///
/// 系统内置(Y是 N否)
///
public string ConfigType { get; set; }
}
}