添加项目文件。
This commit is contained in:
36
system/Tnb.Systems.Entitys/Entity/System/SysConfigEntity.cs
Normal file
36
system/Tnb.Systems.Entitys/Entity/System/SysConfigEntity.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using JNPF.Common.Const;
|
||||
using JNPF.Common.Contracts;
|
||||
using SqlSugar;
|
||||
|
||||
namespace JNPF.Systems.Entitys.System;
|
||||
|
||||
/// <summary>
|
||||
/// 系统设置.
|
||||
/// </summary>
|
||||
[SugarTable("BASE_SYSCONFIG")]
|
||||
public class SysConfigEntity : EntityBase<string>
|
||||
{
|
||||
/// <summary>
|
||||
/// 名称.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_NAME", ColumnDescription = "名称")]
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 键.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_KEY", ColumnDescription = "键")]
|
||||
public string Key { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 值.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_VALUE", ColumnDescription = "值")]
|
||||
public string Value { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分类.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_CATEGORY", ColumnDescription = "分类")]
|
||||
public string Category { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user