using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Ems.CollectService.Entity { /// /// 参数配置表 /// [SugarTable("sys_config")] public class SysConfig { /// /// 参数主键 /// [SugarColumn(ColumnName="config_id" ,IsPrimaryKey = true ,IsIdentity = true )] public int ConfigId { get; set; } /// /// 参数名称 /// 默认值: /// [SugarColumn(ColumnName="config_name" )] public string ConfigName { get; set; } /// /// 参数键名 /// 默认值: /// [SugarColumn(ColumnName="config_key" )] public string ConfigKey { get; set; } /// /// 参数键值 /// 默认值: /// [SugarColumn(ColumnName="config_value" )] public string ConfigValue { get; set; } /// /// 系统内置(Y是 N否) /// 默认值: N /// [SugarColumn(ColumnName="config_type" )] public string ConfigType { get; set; } /// /// 创建者 /// 默认值: /// [SugarColumn(ColumnName="create_by" )] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName="create_time" )] public DateTime? CreateTime { get; set; } /// /// 更新者 /// 默认值: /// [SugarColumn(ColumnName="update_by" )] public string UpdateBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName="update_time" )] public DateTime? UpdateTime { get; set; } /// /// 备注 /// [SugarColumn(ColumnName="remark" )] public string Remark { get; set; } } }