Files
SCRGroupLine/GroupLine.Model/SystemConfig.cs
2026-03-16 10:36:47 +08:00

49 lines
1.3 KiB
C#

using FreeSql.DataAnnotations;
using System;
namespace GroupLine.Model
{
/// <summary>
/// 系统配置信息
/// </summary>
[Table(Name = "dbo.SystemConfig")]
public class SystemConfig
{
/// <summary>
/// 主键
/// </summary>
[Column(IsPrimary = true)]
public Guid Id { get; set; }
/// <summary>
/// 区域
/// </summary>
[Column(Name = "Region", IsNullable = false, StringLength = 20)]
public string Region { get; set; }
/// <summary>
/// 分类
/// </summary>
[Column(Name = "Category", IsNullable = false, StringLength = 20)]
public string Category { get; set; }
/// <summary>
/// 属性名称
/// </summary>
[Column(Name = "Name", IsNullable = false, StringLength = 20)]
public string Name { get; set; }
/// <summary>
/// 属性值
/// </summary>
[Column(Name = "Value", IsNullable = false, StringLength = 200)]
public string Value { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Column(ServerTime = DateTimeKind.Local, CanUpdate = true)]
public DateTime CreateTime { get; set; }
}
}