using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.Tenants;
namespace WIDESEAWCS_Code
{
///
/// 配置表实体
///
[SugarTable("Sys_Config", "组织架构"), MultiTenant]
public class Sys_Config
{
///
/// 主键ID
///
[SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "主键ID")]
public int Id { get; set; }
///
/// 配置键
///
[SugarColumn(Length = 255, ColumnDescription = "配置键")]
public string ConfigKey { get; set; }
///
/// 配置值
///
[SugarColumn(ColumnDataType = "text", ColumnDescription = "配置值")]
public string ConfigValue { get; set; }
///
/// 分类
///
[SugarColumn(Length = 255, ColumnDescription = "分类")]
public string Category { get; set; }
///
/// 备注
///
[SugarColumn(Length = 255, ColumnDescription = "备注")]
public string Remark { get; set; }
///
/// 排序码
///
[SugarColumn(ColumnDescription = "排序码")]
public int SortCode { get; set; }
///
/// 状态
///
[SugarColumn(Length = 20, ColumnDescription = "状态")]
public string Status { get; set; }
///
/// 创建人
///
[SugarColumn(Length = 255, ColumnDescription = "创建人")]
public string Creater { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnDescription = "创建时间")]
public DateTime CreateDate { get; set; }
///
/// 修改人
///
[SugarColumn(Length = 255, ColumnDescription = "修改人")]
public string Modifier { get; set; }
///
/// 修改时间
///
[SugarColumn(ColumnDescription = "修改时间")]
public DateTime ModifyDate { get; set; }
///
/// 分类项目
///
[SugarColumn(Length = 255, ColumnDescription = "分类项目")]
public string CategoryItem { get; set; }
}
}