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.
31 lines
983 B
31 lines
983 B
using System;
|
|
|
|
namespace leak_test_project.Models
|
|
{
|
|
public class ParsedData
|
|
{
|
|
public string RawData { get; set; }
|
|
public double MeasuredValue { get; set; }
|
|
public string Unit { get; set; }
|
|
public string TestType { get; set; }
|
|
public string Judgment { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
|
|
// 스크린샷 추가 요구사항 필드
|
|
public string ChannelNo { get; set; }
|
|
public string ProgramNo { get; set; }
|
|
public string UniqueId { get; set; }
|
|
public string TestDate { get; set; }
|
|
public string TestTime { get; set; }
|
|
public string SerialNo { get; set; }
|
|
public string LowID { get; set; }
|
|
|
|
/// <summary>센서 자체 판정 결과 (A=Accept, R=Reject). SPEC 교차 검증에 사용.</summary>
|
|
public string SensorJudgment { get; set; }
|
|
|
|
public ParsedData()
|
|
{
|
|
Timestamp = DateTime.Now;
|
|
}
|
|
}
|
|
}
|
|
|