using Bro.Common.Interface; using Bro.Common.Model; using Bro.DataBase.Model; using System.ComponentModel.DataAnnotations.Schema; namespace Bro.M135.DBManager { public class P_PRODUCT_DETAIL : BaseModel { public string PID { get; set; } = ""; public string SN { get; set; } = ""; public string PositionName { get; set; } = ""; public string DefectDesc { get; set; } = ""; public string FAIData { get; set; } = ""; public bool IsDone { get; set; } = false; //[NotMapped] public List ResultList { get; set; } = new List(); //[NotMapped] public List SpecList { get; set; } = new List(); //[NotMapped] public List DefectList { get; set; } = new List(); } }