namespace Entity; /// /// 配置实体 /// [Table(Name = "Config")] public class ConfigEntity : BaseEntity { /// /// 配置Key /// public string Key { get; set; } = string.Empty; /// /// 配置Value /// public string Value { get; set; } = string.Empty; /// /// 配置类型 /// public ConfigType Type { get; set; } } public enum ConfigType { Boolean, String, Json, Number }