Added Open NCR report.
This commit is contained in:
18
ReportingServices.Shared/Models/ProductionReport/NCR.cs
Normal file
18
ReportingServices.Shared/Models/ProductionReport/NCR.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace ReportingServices.Shared.Models.ProductionReport;
|
||||
public class NCR
|
||||
{
|
||||
[JsonPropertyName("ENTRY_DATE")]
|
||||
public DateTime ENTRY_DATE { get; set; }
|
||||
[JsonPropertyName("SHIFT")]
|
||||
public string SHIFT { get; set; }
|
||||
[JsonPropertyName("REACTOR")]
|
||||
public string REACTOR { get; set; }
|
||||
[JsonPropertyName("RDS_NO")]
|
||||
public string RDS_NO { get; set; }
|
||||
[JsonPropertyName("TOT_REJ")]
|
||||
public int TOT_REJ { get; set; }
|
||||
[JsonPropertyName("AC_DESC")]
|
||||
public string AC_DESC { get; set; }
|
||||
}
|
Reference in New Issue
Block a user