123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- namespace ConsoleApp2
- {
- public class UpLoadTraceModel
- {
- public Serials serials { get; set; }
- public Data data { get; set; }
- }
- public class Serials
- {
- public string part_id { get; set; }
- }
- public class Data
- {
- public Insight insight { get; set; }
- }
- public class Insight
- {
- public Test_Attributes test_attributes { get; set; }
- public Test_Station_Attributes test_station_attributes { get; set; }
- public Uut_Attributes uut_attributes { get; set; }
- public Result[] results { get; set; }
- }
- public class Test_Attributes
- {
-
-
-
- public string test_result { get; set; }
-
-
-
- public string uut_start { get; set; }
-
-
-
- public string uut_stop { get; set; }
- }
- public class Test_Station_Attributes
- {
- public string fixture_id { get; set; }
- public string head_id { get; set; }
-
-
-
- public string line_id { get; set; }
-
-
-
- public string software_name { get; set; }
-
-
-
- public string software_version { get; set; }
-
-
-
- public string station_id { get; set; }
- }
- public class Uut_Attributes
- {
-
- public string op_id { get; set; }
-
-
-
- public string shift { get; set; }
-
-
-
- public string station_vendor { get; set; }
- }
- public class Result
- {
-
-
-
- public string result { get; set; }
-
-
-
-
- public string test { get; set; }
-
-
-
- public string units { get; set; }
-
-
-
-
-
-
- public string value { get; set; }
- }
- }
|