41 lines
941 B
C#
41 lines
941 B
C#
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; }
|
|
|
|
} |