using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.System;
///
/// 系统设置.
///
[SugarTable("BASE_SYSCONFIG")]
public class SysConfigEntity : EntityBase
{
///
/// 名称.
///
[SugarColumn(ColumnName = "F_NAME", ColumnDescription = "名称")]
public string Name { get; set; }
///
/// 键.
///
[SugarColumn(ColumnName = "F_KEY", ColumnDescription = "键")]
public string Key { get; set; }
///
/// 值.
///
[SugarColumn(ColumnName = "F_VALUE", ColumnDescription = "值")]
public string Value { get; set; }
///
/// 分类.
///
[SugarColumn(ColumnName = "F_CATEGORY", ColumnDescription = "分类")]
public string Category { get; set; }
}