using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AmrControl.DB.Model { /// /// 程序配置项 /// [Table("app_configs")] public class AppConfig { /// /// ID /// [Key] public long ID { get; set; } /// /// 应用名称 /// public string App { get; set; } /// /// 段 /// public string Session { get; set; } /// /// 键 /// public string Key { get; set; } /// /// 值 /// public string Data { get; set; } } }