You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
655 B
18 lines
655 B
namespace leak_test_project.Models
|
|
{
|
|
public class InspectData
|
|
{
|
|
public string InspectDate { get; set; }
|
|
public string InspectTime { get; set; }
|
|
public string Retest { get; set; }
|
|
public string Mode { get; set; } // 예: 개발/양산
|
|
public string LineNo { get; set; }
|
|
public string ProductType { get; set; }
|
|
public string ProductId { get; set; }
|
|
public string Channel { get; set; } // 좌/우
|
|
public string SpecUL { get; set; }
|
|
public string SpecLL { get; set; }
|
|
public string MeasuredValue { get; set; }
|
|
public string Judgment { get; set; }
|
|
}
|
|
}
|
|
|