Added Hold Report to the production reports.
This commit is contained in:
18
ReportingServices.Shared/Models/ProductionReport/HoldLot.cs
Normal file
18
ReportingServices.Shared/Models/ProductionReport/HoldLot.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace ReportingServices.Shared.Models.ProductionReport;
|
||||
public class HoldLot
|
||||
{
|
||||
[JsonPropertyName("WO_NO")]
|
||||
public string WO_NO { get; set; }
|
||||
[JsonPropertyName("HOLD_DATE")]
|
||||
public DateTime HOLD_DATE { get; set; }
|
||||
[JsonPropertyName("HOLD_USER")]
|
||||
public string HOLD_USER { get; set; }
|
||||
[JsonPropertyName("HOLD_REASON")]
|
||||
public string HOLD_REASON { get; set; }
|
||||
[JsonPropertyName("RDS_NO")]
|
||||
public string RDS_NO { get; set; }
|
||||
[JsonPropertyName("REACTOR")]
|
||||
public string REACTOR { get; set; }
|
||||
}
|
Reference in New Issue
Block a user