InfinityQS
This commit is contained in:
41
Shared/DataModels/InfinityQSBase.cs
Normal file
41
Shared/DataModels/InfinityQSBase.cs
Normal file
@ -0,0 +1,41 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace OI.Metrology.Shared.DataModels;
|
||||
|
||||
public class InfinityQSBase
|
||||
{
|
||||
|
||||
[JsonPropertyName("se_sgrp")]
|
||||
public int? SubGroupId { get; set; }
|
||||
|
||||
[JsonPropertyName("se_sgtm")]
|
||||
public int? SubGroupDateTime { get; set; }
|
||||
|
||||
[JsonPropertyName("se_tsno")]
|
||||
public int? TestNumber { get; set; }
|
||||
|
||||
[JsonPropertyName("rd_name")]
|
||||
public string? Process { get; set; }
|
||||
|
||||
[JsonPropertyName("jd_name")]
|
||||
public string? Job { get; set; }
|
||||
|
||||
[JsonPropertyName("pl_name")]
|
||||
public string? Lot { get; set; }
|
||||
|
||||
[JsonPropertyName("pd_name")]
|
||||
public string? Part { get; set; }
|
||||
|
||||
[JsonPropertyName("td_test")]
|
||||
public int? Test { get; set; }
|
||||
|
||||
[JsonPropertyName("td_name")]
|
||||
public string? TestName { get; set; }
|
||||
|
||||
[JsonPropertyName("se_val")]
|
||||
public double? Value { get; set; }
|
||||
|
||||
[JsonPropertyName("ev_count")]
|
||||
public int? EventCount { get; set; }
|
||||
|
||||
}
|
Reference in New Issue
Block a user