41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
|
|
namespace RIZO.Model.System
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 参数配置,数据实体对象
|
|||
|
|
///
|
|||
|
|
/// @author mr.zhao
|
|||
|
|
/// @date 2021-09-29
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarTable("sys_config", "配置表")]
|
|||
|
|
[Tenant("0")]
|
|||
|
|
public class SysConfig : SysBase, IMainDbEntity
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 配置id
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|||
|
|
public int ConfigId { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 参数名称
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(Length = 100)]
|
|||
|
|
public string ConfigName { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 参数键名
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(Length = 100)]
|
|||
|
|
public string ConfigKey { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 参数键值
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(Length = 500)]
|
|||
|
|
public string ConfigValue { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 系统内置(Y是 N否)
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(Length = 1)]
|
|||
|
|
public string ConfigType { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|