InfinityQS

This commit is contained in:
2023-02-24 20:34:23 -07:00
parent f3d199cccb
commit 8e15b6a3a5
13 changed files with 531 additions and 36 deletions

View 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; }
}