添加项目文件。

This commit is contained in:
2026-03-16 10:36:47 +08:00
parent aa2e0d4a45
commit 54b11c9c84
309 changed files with 41803 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
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; }
}
}