| | |
| | | using Bro.Common.Model; |
| | | using Bro.Common.Interface; |
| | | using Bro.Common.Model; |
| | | using Bro.DataBase.Model; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | |
| | |
| | | public string FAIData { get; set; } = ""; |
| | | public bool IsDone { get; set; } = false; |
| | | |
| | | [NotMapped] |
| | | //[NotMapped] |
| | | public List<DetectResult> ResultList { get; set; } = new List<DetectResult>(); |
| | | [NotMapped] |
| | | public List<Spec> SpecList { get; set; } = new List<Spec>(); |
| | | [NotMapped] |
| | | //[NotMapped] |
| | | public List<ISpec> SpecList { get; set; } = new List<ISpec>(); |
| | | //[NotMapped] |
| | | public List<string> DefectList { get; set; } = new List<string>(); |
| | | } |
| | | } |