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; }
|
||||
|
||||
}
|
74
Shared/DataModels/InfinityQSEvent.cs
Normal file
74
Shared/DataModels/InfinityQSEvent.cs
Normal file
@ -0,0 +1,74 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace OI.Metrology.Shared.DataModels;
|
||||
|
||||
public class InfinityQSEvent
|
||||
{
|
||||
|
||||
[JsonPropertyName("F_EVNT")]
|
||||
public int Evnt { get; set; }
|
||||
|
||||
[JsonPropertyName("F_CRTM")]
|
||||
public int Crtm { get; set; }
|
||||
|
||||
[JsonPropertyName("F_EDTM")]
|
||||
public int Edtm { get; set; }
|
||||
|
||||
[JsonPropertyName("F_TYPE")]
|
||||
public int Type { get; set; }
|
||||
|
||||
[JsonPropertyName("F_NAME")]
|
||||
public string? Name { get; set; }
|
||||
|
||||
[JsonPropertyName("F_EMPL")]
|
||||
public int Empl { get; set; }
|
||||
|
||||
[JsonPropertyName("F_EVTM")]
|
||||
public int Evtm { get; set; }
|
||||
|
||||
[JsonPropertyName("F_PRCS")]
|
||||
public int Prcs { get; set; }
|
||||
|
||||
[JsonPropertyName("F_PART")]
|
||||
public int Part { get; set; }
|
||||
|
||||
[JsonPropertyName("F_TEST")]
|
||||
public int Test { get; set; }
|
||||
|
||||
[JsonPropertyName("F_SGTM")]
|
||||
public int Sgtm { get; set; }
|
||||
|
||||
[JsonPropertyName("F_ACC")]
|
||||
public int Acc { get; set; }
|
||||
|
||||
[JsonPropertyName("F_ACEM")]
|
||||
public int Acem { get; set; }
|
||||
|
||||
[JsonPropertyName("F_ACTM")]
|
||||
public int Actm { get; set; }
|
||||
|
||||
[JsonPropertyName("F_CAC")]
|
||||
public int Cac { get; set; }
|
||||
|
||||
[JsonPropertyName("F_CAEM")]
|
||||
public int Caem { get; set; }
|
||||
|
||||
[JsonPropertyName("F_CATM")]
|
||||
public int Catm { get; set; }
|
||||
|
||||
[JsonPropertyName("F_FLAG")]
|
||||
public int Flag { get; set; }
|
||||
|
||||
[JsonPropertyName("F_USER")]
|
||||
public int User { get; set; }
|
||||
|
||||
[JsonPropertyName("F_DSBL")]
|
||||
public int Dsbl { get; set; }
|
||||
|
||||
[JsonPropertyName("F_RFC")]
|
||||
public int Rfc { get; set; }
|
||||
|
||||
[JsonPropertyName("F_TRTM")]
|
||||
public int Trtm { get; set; }
|
||||
|
||||
}
|
Reference in New Issue
Block a user