using Microsoft.SqlServer.Server; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SLH.SSDMS.Model.DO { [SugarTable("sys_config")] public class Sys_Config { [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int config_id { get; set; } public string config_name { get; set; } public string config_key { get; set; } public string config_value { get; set; } public string remark { get; set; } } }