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 PaintDotNet.DbOpreate.DbModel { [Table("mic_script", Schema = "dbo")] [Serializable] public class mic_script { public mic_script() { } /// /// 主键ID /// [Key] public int id { get; set; } /// /// 脚本名称 /// public string name { get; set; } [NotMapped] public List sonList { get; set; } } }