kingno
2025-04-03 a97ac998301461e6284595b1cf2c7b40ce5b2459
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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<DetectResult> ResultList { get; set; } = new List<DetectResult>();
        //[NotMapped]
        public List<ISpec> SpecList { get; set; } = new List<ISpec>();
        //[NotMapped]
        public List<string> DefectList { get; set; } = new List<string>();
    }
}