using SqlSugar; namespace FactorySystemModel.SqlSugarModel { /// ///系统配置 /// public partial class TFS_Config { [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int FID { get; set; } public string FName { get; set; } public string FKey { get; set; } public string FValue { get; set; } } }