Added Open NCR report.

This commit is contained in:
Daniel Wathen
2023-01-23 21:27:01 -07:00
parent f40cee57a7
commit 348c233eb1
9 changed files with 126 additions and 10 deletions

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