62 lines
1.7 KiB
C#
62 lines
1.7 KiB
C#
|
// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
|
|||
|
//
|
|||
|
// 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
|
|||
|
|
|||
|
namespace Admin.NET.Core;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 系统参数配置表
|
|||
|
/// </summary>
|
|||
|
[SugarTable(null, "系统参数配置表")]
|
|||
|
[SysTable]
|
|||
|
[SugarIndex("index_{table}_N", nameof(Name), OrderByType.Asc)]
|
|||
|
[SugarIndex("index_{table}_C", nameof(Code), OrderByType.Asc)]
|
|||
|
public class SysConfig : EntityBase
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 名称
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnDescription = "名称", Length = 64)]
|
|||
|
[Required, MaxLength(64)]
|
|||
|
public virtual string Name { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 编码
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnDescription = "编码", Length = 64)]
|
|||
|
[MaxLength(64)]
|
|||
|
public string? Code { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 属性值
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnDescription = "属性值", Length = 64)]
|
|||
|
[MaxLength(64)]
|
|||
|
public string? Value { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 是否是内置参数(Y-是,N-否)
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnDescription = "是否是内置参数")]
|
|||
|
public YesNoEnum SysFlag { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 分组编码
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnDescription = "分组编码", Length = 64)]
|
|||
|
[MaxLength(64)]
|
|||
|
public string? GroupCode { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 排序
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnDescription = "排序")]
|
|||
|
public int OrderNo { get; set; } = 100;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 备注
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnDescription = "备注", Length = 256)]
|
|||
|
[MaxLength(256)]
|
|||
|
public string? Remark { get; set; }
|
|||
|
}
|